如何利用PopupWindow实现弹出菜单并解决焦点获取以及与软键盘冲突问题

           如何利用PopupWindow实现弹出菜单并解决焦点获取以及与软键盘冲突问题

  在android中有时候可能要实现一个底部弹出菜单,此时可以考虑用PopupWindow来实现。下面就来介绍一下如何使用PopupWindow实现一个弹出窗。

  主Activity代码:

public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    //得到弹出菜单的view,login_setting_popup是弹出菜单的布局文件
    View view = getLayoutInflater().inflate(R.layout.login_setting_popup, null);
    //初始化弹出菜单
    popWindow = new PopupWindow(view, WindowManager.LayoutParams.FILL_PARENT,WindowManager.LayoutParams.WRAP_CONTENT,false);
    //设置可以获取焦点,否则弹出菜单中的EditText是无法获取输入的
    popWindow.setFocusable(true);
    //这句是为了防止弹出菜单获取焦点之后,点击activity的其他组件没有响应
    popWindow.setBackgroundDrawable(new BitmapDrawable()); 
    //防止虚拟软键盘被弹出菜单遮住
    popWindow.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
    //在底部显示
    popWindow.showAtLocation(this,Gravity.BOTTOM, 0, 0); 
}

  login_setting_popup.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical"
  android:background="#eeeeee">
  
  <LinearLayout
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:orientation="horizontal"
   android:layout_marginLeft="20dp"
  android:layout_marginRight="30dp">
   
   <TextView
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:layout_weight="0.2"
    android:textSize="12sp"
    android:gravity="center_vertical"
    android:textColor="@android:color/black"
    android:text="服务器地址">
   </TextView>
   
   <EditText
    android:id="@+id/login_setting_adderss_et"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.8">
   </EditText>
  
  </LinearLayout>
  
  <LinearLayout
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:orientation="horizontal"
   android:layout_marginLeft="20dp"
   android:layout_marginRight="30dp">
   
   <TextView
    android:layout_width="0dp"
    android:layout_height="fill_parent"
    android:layout_weight="0.2"
    android:textSize="12sp"
    android:textColor="@android:color/black"
    android:gravity="center_vertical"
    android:text="GPS">
   </TextView>
   
   <RadioGroup
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_weight="0.8">
    
    <RadioButton
     android:id="@+id/open_gps_rb"
     android:layout_height="wrap_content"
     android:layout_width="wrap_content"
     android:textSize="12sp"
     android:textColor="@android:color/black"
     android:checked="true"
     android:text="打开">
    </RadioButton>
    
    <RadioButton
     android:id="@+id/close_gps_rb"
     android:layout_height="wrap_content"
     android:layout_width="wrap_content"
     android:textSize="12sp"
     android:layout_marginLeft="20dp"
     android:textColor="@android:color/black"
     android:text="关闭">
    </RadioButton>
   </RadioGroup>
  
      
  </LinearLayout>
</LinearLayout>

  这样就可以实现一个底部弹出菜单了。但是在用PopupWindow实现底部弹出菜单的时候要注意几个问题:

  1)如果弹出菜单中有EditText这种输入控件,如果不给PopupWindow设置可获取焦点的话,EditText是无法获取输入的。

  2)一定要设置 虚拟软键盘随需要更改屏幕显示内容的大小,否则虚拟软键盘会被底部弹出菜单遮挡住。

  3)如果设置了PopupWindow可获取焦点的话,此时会遇到一个问题就是当PopupWindow中的控件比如EditText获取焦点之后,点击PopupWindow之外的控件是不会有响应的,如果用setBackgroundDrawable(new BitmapDrawable())进行设置的话,则不会出现这种情况。

相关文章

Android 如何解决dialog弹出时无法捕捉Activity的back事件 在...
Android实现自定义带文字和图片的Button 在Android开发中经常...
Android 关于长按back键退出应用程序的实现最近在做一个Andr...
android自带的时间选择器只能精确到分,但是对于某些应用要求...