您当前的位置: 首页 >  动画

xiangzhihong8

暂无认证

  • 10浏览

    0关注

    1324博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

android之动画popowindows

xiangzhihong8 发布时间:2013-12-22 10:59:07 ,浏览量:10

废话不多说,先看效果图:

这是主Activity代码:

[java]  view plain copy
  1. public class RollActivity extends Activity {  
  2.     private View view;  
  3.     private Button btn;  
  4.     private PopupWindow mPopupWindow;  
  5.     private View[] btns;  
  6.     /** Called when the activity is first created. */  
  7.     @Override  
  8.     public void onCreate(Bundle savedInstanceState) {  
  9.         super.onCreate(savedInstanceState);  
  10.         setContentView(R.layout.main);  
  11. //      LinearLayout layout=(LinearLayout) view.findViewById(R.id.layout_main);  
  12. //      //设置背景图片旋转180  
  13. //      Bitmap mBitmap=setRotate(R.drawable.bg_kuang);  
  14. //      BitmapDrawable drawable=new BitmapDrawable(mBitmap);  
  15. //      layout.setBackgroundDrawable(drawable);  
  16.           
  17.         btn=(Button) this.findViewById(R.id.btn);  
  18.         btn.setOnClickListener(new OnClickListener(){  
  19.   
  20.             @Override  
  21.             public void onClick(View v) {  
  22.                 // TODO Auto-generated method stub  
  23.                 showPopupWindow(btn);  
  24.             }  
  25.               
  26.         });  
  27.           
  28.         initPopupWindow(R.layout.popwindow);  
  29.   
  30.     }  
  31.       
  32.     private void initPopupWindow(int resId){  
  33.         LayoutInflater mLayoutInflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);  
  34.         view = mLayoutInflater.inflate(resId, null);  
  35.               
  36.         mPopupWindow = new PopupWindow(view, 400,LayoutParams.WRAP_CONTENT);  
  37. //      mPopupWindow.setBackgroundDrawable(new BitmapDrawable());//必须设置background才能消失  
  38.         mPopupWindow.setBackgroundDrawable(getResources().getDrawable(R.drawable.bg_frame));  
  39.         mPopupWindow.setOutsideTouchable(true);  
  40.           
  41.         //自定义动画  
  42. //      mPopupWindow.setAnimationStyle(R.style.PopupAnimation);  
  43.         //使用系统动画  
  44.         mPopupWindow.setAnimationStyle(android.R.style.Animation_Dialog);  
  45.         mPopupWindow.update();  
  46.         mPopupWindow.setTouchable(true);  
  47.         mPopupWindow.setFocusable(true);  
  48.           
  49.         btns=new View[3];  
  50.         btns[0]=view.findViewById(R.id.btn_0);  
  51.         btns[1]=view.findViewById(R.id.btn_1);  
  52.         btns[2]=view.findViewById(R.id.btn_2);  
  53.         btns[0].setOnClickListener(new OnClickListener() {  
  54.               
  55.             @Override  
  56.             public void onClick(View v) {  
  57.                 // TODO Auto-generated method stub  
  58.                 //doSomething  
  59.             }  
  60.         });  
  61.         btns[1].setOnClickListener(new OnClickListener() {  
  62.               
  63.             @Override  
  64.             public void onClick(View v) {  
  65.                 // TODO Auto-generated method stub  
  66.                 //doSomething  
  67.             }  
  68.         });  
  69.         btns[2].setOnClickListener(new OnClickListener() {  
  70.               
  71.             @Override  
  72.             public void onClick(View v) {  
  73.                 // TODO Auto-generated method stub  
  74.                 //doSomething  
  75.             }  
  76.         });  
  77.     }  
  78.     private void showPopupWindow(View view) {  
  79.         if(!mPopupWindow.isShowing()){  
  80. //          mPopupWindow.showAsDropDown(view,0,0);  
  81.             mPopupWindow.showAtLocation(view, Gravity.CENTER, 0, 0);  
  82.         }  
  83.     }  
  84.     public Bitmap setRotate(int resId) {  
  85.         Matrix mFgMatrix = new Matrix();  
  86.         Bitmap mFgBitmap = BitmapFactory.decodeResource(getResources(), resId);  
  87.         mFgMatrix.setRotate(180f);  
  88.         return mFgBitmap=Bitmap.createBitmap(mFgBitmap, 0, 0,   
  89.                 mFgBitmap.getWidth(), mFgBitmap.getHeight(), mFgMatrix, true);  
  90.     }  
  91. }  

PopupWindow的布局popwindow.xml  注意3个LinearLayout里必须设置clickable和background,这样当点击上去的时候才会有点击效果。  android:clickable="true"  android:background="@drawable/state_btn_pressed" 

[html]  view plain copy
  1.   
  2.    
  3.           
  4.               
  5.               
  6.               
  7.               
  8.           
  9.           
  10.               
  11.               
  12.               
  13.               
  14.           
  15.           
  16.           
  17.               
  18.               
  19.               
  20.               
  21.           
  22.   

state_btn_pressed.xml,点击的效果: 

[html]  view plain copy
  1.   
  2.   
  3.       
  4.   

Android 模仿迅雷的 PopupWindow 出现/消失动画  出现:

[html]  view plain copy
  1.   
  2.   
  3.       
  4.       
  5.       
  6.   

消失: 

[html]  view plain copy
  1.   
  2.   
  3.       
  4.       
  5.       
  6.   

最后用下面的 XML 封装:

[html]  view plain copy
  1.   
  2.   
  3.       
  4.         @anim/anim_dialog_show  
  5.         @anim/anim_dialog_hide  
  6.       
  7.   
关注
打赏
1482932726
查看更多评论
立即登录/注册

微信扫码登录

0.0832s