private void openpopuwindow() {    LayoutInflater mLayoutInflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);    menuView = (ViewGroup) mLayoutInflater.inflate(            R.layout.new_putinpop, null, true);    bt_sure= (Button) menuView.findViewById(R.id.button3);    bt_acncle= (Button) menuView.findViewById(R.id.button4);    bt_sure.setOnClickListener(this);    bt_acncle.setOnClickListener(this);    //设置popuwindow视图的焦点和触摸    menuView.setFocusable(true);    menuView.setFocusableInTouchMode(true);    //设置back事件    menuView.setOnKeyListener(new View.OnKeyListener() {        @Override        public boolean onKey(View v, int keyCode, KeyEvent event) {            if (event.getAction()==KeyEvent.ACTION_DOWN){                if (keyCode==KeyEvent.KEYCODE_BACK){                   popupWindow.dismiss();                    return true;                }            }            return false;        }    });    popupWindow = new PopupWindow(menuView, ViewGroup.LayoutParams.WRAP_CONTENT,            ViewGroup.LayoutParams.WRAP_CONTENT, true);    popupWindow.showAtLocation(pare, Gravity.CENTER, 0, 0);    //设置popudowin焦点和触摸    popupWindow.setFocusable(true);    popupWindow.setTouchable(true);    popupWindow.setOutsideTouchable(true);    //设置透明背景    backgroundAlpha(0.3f);    popupWindow.update();    //popWindow消失监听方法    mSpinerPopWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {        @Override        public void onDismiss() {            backgroundAlpha(1f);        }    });}

更多相关文章

  1. android 在WebView打开网页
  2. Android(安卓)Tint ImageView 无法设置Tintlist问题
  3. Android(安卓)RatingBar
  4. AppTheme属性设置集合
  5. 高德Titus
  6. Android(安卓)Studio的应用与快捷键
  7. Android学习笔记(二一):有趣的widget-日期和时间
  8. 关于xmlns:tools和android:onClick使用
  9. Android(安卓)触摸事件

随机推荐

  1. Android与Unity交互研究
  2. Android系统启动流程
  3. Android(安卓)Developer和Google Group可
  4. Android跨进程通信IPC之1——Linux基础
  5. Android(安卓)spinner 样式及其使用详解
  6. Android跨进程通信IPC之11——AIDL
  7. Android锁屏的问题
  8. 编译 Linux 3.5 内核烧写 Android(安卓)4
  9. Android主题设置为@android:style/Theme.
  10. TextView跑马灯效果