PopupWindow的使用

来源:互联网 发布:linux tomcat安装 用户 编辑:程序博客网 时间:2024/04/25 16:47

在实际中,我们有时为了更炫的效果,而不会使用原生的Menu菜单弹出方式,其中,使用PopupWindow就是一种常用方式,下面用一个简单示例来演示,点击Menu菜单按钮,以动画的方式弹出一个PopupWindow窗口,代码如下:

Activity:

[java] view plaincopy
  1. package com.home.popupwindow;  
  2.   
  3. import android.app.Activity;  
  4. import android.graphics.drawable.BitmapDrawable;  
  5. import android.os.Bundle;  
  6. import android.view.Gravity;  
  7. import android.view.Menu;  
  8. import android.view.View;  
  9. import android.view.View.OnClickListener;  
  10. import android.view.WindowManager.LayoutParams;  
  11. import android.widget.Button;  
  12. import android.widget.PopupWindow;  
  13. import android.widget.Toast;  
  14.   
  15. public class PopupWindowActivity extends Activity {  
  16.     // 声明PopupWindow对象  
  17.     private PopupWindow popupWindow;  
  18.     // Activity布局View  
  19.     private View rootView;  
  20.     // PopupWindow布局View  
  21.     private View contentView;  
  22.     private Button cancelBtn;  
  23.     private Button delBtn;  
  24.   
  25.     @Override  
  26.     protected void onCreate(Bundle savedInstanceState) {  
  27.         super.onCreate(savedInstanceState);  
  28.         // 根据布局文件加载rootView组件  
  29.         rootView = getLayoutInflater().inflate(R.layout.main, null);  
  30.         setContentView(rootView);  
  31.         // 根据布局文件加载contentView组件  
  32.         contentView = getLayoutInflater().inflate(R.layout.popup_content, null);  
  33.   
  34.         // 获得取消按钮组件  
  35.         cancelBtn = (Button) contentView  
  36.                 .findViewById(R.id.popup_conent_btn_cancel);  
  37.         // 获得删除按钮组件  
  38.         delBtn = (Button) contentView.findViewById(R.id.popup_conent_btn_del);  
  39.         delBtn.setOnClickListener(new OnClickListener() {  
  40.   
  41.             @Override  
  42.             public void onClick(View v) {  
  43.                 Toast.makeText(PopupWindowActivity.this"执行具体删除操作!",  
  44.                         Toast.LENGTH_LONG).show();  
  45.             }  
  46.         });  
  47.         cancelBtn.setOnClickListener(new OnClickListener() {  
  48.   
  49.             @Override  
  50.             public void onClick(View v) {  
  51.                 // 去掉PopupWindow  
  52.                 popupWindow.dismiss();  
  53.             }  
  54.         });  
  55.         // 创建PopupWindow对象  
  56.         popupWindow = new PopupWindow(this);  
  57.         // 设置弹出窗口的内容  
  58.         popupWindow.setContentView(contentView);  
  59.         // 设置弹出窗口的宽度  
  60.         popupWindow.setWidth(LayoutParams.MATCH_PARENT);  
  61.         // 设置弹出窗口的高度  
  62.         popupWindow.setHeight(LayoutParams.WRAP_CONTENT);  
  63.         // 在点击PopupWindow窗口外面时可以让窗口消失  
  64.         // popupWindow.setBackgroundDrawable(new BitmapDrawable());  
  65.         // 在点击PopupWindow窗口外面时让窗口不会消失  
  66.         popupWindow.setBackgroundDrawable(null);  
  67.         // 设置弹出窗口可以获取焦点  
  68.         popupWindow.setFocusable(true);  
  69.         // 设置动画效果  
  70.         popupWindow.setAnimationStyle(R.style.popup_anim_style);  
  71.     }  
  72.   
  73.     @Override  
  74.     public boolean onCreateOptionsMenu(Menu menu) {  
  75.         popupWindow.showAtLocation(rootView, Gravity.BOTTOM, 00);  
  76.         return false;  
  77.     }  
  78.   
  79. }  


PopupWindow的布局XML:

[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:orientation="vertical" >  
  6.   
  7.     <Button  
  8.         android:id="@+id/popup_conent_btn_del"  
  9.         android:layout_width="match_parent"  
  10.         android:layout_height="wrap_content"  
  11.         android:text="删除" />  
  12.   
  13.     <Button  
  14.         android:id="@+id/popup_conent_btn_cancel"  
  15.         android:layout_width="match_parent"  
  16.         android:layout_height="wrap_content"  
  17.         android:text="取消" />  
  18.   
  19. </LinearLayout>  


styles中加上style:

[html] view plaincopy
  1. <style name="popup_anim_style">  
  2.         <item name="android:windowEnterAnimation">@anim/popup_anim_in</item>  
  3.         <item name="android:windowExitAnimation">@anim/popup_anim_out</item>  
  4.     </style>  


popup_anim_in动画:

[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.   
  4.     <translate  
  5.         android:duration="1500"  
  6.         android:fillAfter="true"  
  7.         android:fromXDelta="0"  
  8.         android:fromYDelta="200"  
  9.         android:toXDelta="0"  
  10.         android:toYDelta="0" />  
  11.   
  12. </set>  

popup_anim_out动画:

[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <set xmlns:android="http://schemas.android.com/apk/res/android" >  
  3.   
  4.     <translate  
  5.         android:duration="1500"  
  6.         android:fillAfter="true"  
  7.         android:fromXDelta="0"  
  8.         android:fromYDelta="0"  
  9.         android:toXDelta="0"  
  10.         android:toYDelta="200" />  
  11.   
  12. </set>  
0 0
原创粉丝点击