Android自定义弹出窗口PopupWindow使用技巧

 更新时间:2021年10月19日 10:30:30   作者:sw926  
这篇文章主要介绍了Android自定义弹出窗口PopupWindow使用技巧,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

PopupWindow是Android上自定义弹出窗口,使用起来很方便。

PopupWindow的构造函数为

复制代码 代码如下:
public PopupWindow(View contentView, int width, int height, boolean focusable)

contentView为要显示的view,width和height为宽和高,值为像素值,也可以是MATCHT_PARENT和WRAP_CONTENT。

focusable为是否可以获得焦点,这是一个很重要的参数,也可以通过public void setFocusable(boolean focusable)来设置,如果focusable为false,在一个Activity弹出一个PopupWindow,按返回键,由于PopupWindow没有焦点,会直接退出Activity。如果focusable为true,PopupWindow弹出后,所有的触屏和物理按键都有PopupWindows处理。

如果PopupWindow中有Editor的话,focusable要为true。

下面实现一个简单的PopupWindow

主界面的layout为:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:id="@+id/layout_main"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:paddingBottom="@dimen/activity_vertical_margin"
 android:paddingLeft="@dimen/activity_horizontal_margin"
 android:paddingRight="@dimen/activity_horizontal_margin"
 android:paddingTop="@dimen/activity_vertical_margin"
 tools:context=".MainActivity" >

 <Button
  android:id="@+id/btn_test_popupwindow"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerInParent="true"
  android:text="@string/app_name" />

</RelativeLayout>

PopupWindow的layout为:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:background="#000000" >

 <TextView
  android:layout_width="wrap_content"
  android:layout_height="80dp"
  android:text="@string/app_name" 
  android:textColor="#ffffffff"
  android:layout_centerInParent="true"
  android:gravity="center"/>

</RelativeLayout>

Activity的代码为:

public class MainActivity extends Activity {

 private Button mButton;
 private PopupWindow mPopupWindow;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  View popupView = getLayoutInflater().inflate(R.layout.layout_popupwindow, null);

  mPopupWindow = new PopupWindow(popupView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
  mPopupWindow.setTouchable(true);
  mPopupWindow.setOutsideTouchable(true);
  mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));

  mButton = (Button) findViewById(R.id.btn_test_popupwindow);
  mButton.setOnClickListener(new OnClickListener() {

   @Override
   public void onClick(View v) {
    mPopupWindow.showAsDropDown(v);
   }
  });
 }
}

这三行代码

mPopupWindow.setTouchable(true);
mPopupWindow.setOutsideTouchable(true);
mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));

的作用是点击空白处的时候PopupWindow会消失。

mPopupWindow.showAsDropDown(v);
这一行代码将PopupWindow以一种向下弹出的动画的形式显示出来

public void showAsDropDown(View anchor, int xoff, int yoff)
这个函数的第一个参数为一个View,我们这里是一个Button,那么PopupWindow会在这个Button下面显示,xoff,yoff为显示位置的偏移。

点击按钮,就会显示出PopupWindow

很多时候我们把PopupWindow用作自定义的菜单,需要一个从底部向上弹出的效果,这就需要为PopupWindow添加动画。

在工程res下新建anim文件夹,在anim文件夹先新建两个xml文件

menu_bottombar_in.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

 <translate
  android:duration="250"
  android:fromYDelta="100.0%"
  android:toYDelta="0.0" />

</set>

menu_bottombar_out.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android" >

 <translate
  android:duration="250"
  android:fromYDelta="0.0"
  android:toYDelta="100%" />

</set>

在res/value/styles.xml添加一个sytle

 <style name="anim_menu_bottombar">
  <item name="android:windowEnterAnimation">@anim/menu_bottombar_in</item>
  <item name="android:windowExitAnimation">@anim/menu_bottombar_out</item>
 </style>

Acivity修改为

public class MainActivity extends Activity {

 private PopupWindow mPopupWindow;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);

  View popupView = getLayoutInflater().inflate(R.layout.layout_popupwindow, null);

  mPopupWindow = new PopupWindow(popupView, LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT, true);
  mPopupWindow.setTouchable(true);
  mPopupWindow.setOutsideTouchable(true);
  mPopupWindow.setBackgroundDrawable(new BitmapDrawable(getResources(), (Bitmap) null));

  mPopupWindow.getContentView().setFocusableInTouchMode(true);
  mPopupWindow.getContentView().setFocusable(true);
  mPopupWindow.getContentView().setOnKeyListener(new OnKeyListener() {
   @Override
   public boolean onKey(View v, int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_MENU && event.getRepeatCount() == 0
      && event.getAction() == KeyEvent.ACTION_DOWN) {
     if (mPopupWindow != null && mPopupWindow.isShowing()) {
      mPopupWindow.dismiss();
     }
     return true;
    }
    return false;
   }
  });
 }

 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  if (keyCode == KeyEvent.KEYCODE_MENU && event.getRepeatCount() == 0) {
   if (mPopupWindow != null && !mPopupWindow.isShowing()) {
    mPopupWindow.showAtLocation(findViewById(R.id.layout_main), Gravity.BOTTOM, 0, 0);
   }
   return true;
  }
  return super.onKeyDown(keyCode, event);
 }
}

这样点击菜单键会弹出自定义的PopupWindow,点击空白处或者返回键、菜单键,PopupWindow会消失。

文章如果有不对的地方,希望大家理解。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

相关文章

  • Android编程基于重力传感器实现横竖屏放向切换功能

    Android编程基于重力传感器实现横竖屏放向切换功能

    这篇文章主要介绍了Android编程基于重力传感器实现横竖屏放向切换功能,结合具体实例形式分析了Android基于重力传感器实现横竖屏切换的相关操作技巧,需要的朋友可以参考下
    2018-01-01
  • 详解Android 中的文件存储

    详解Android 中的文件存储

    这篇文章主要介绍了Android 中的文件存储的相关资料,帮助大家更好的理解和学习使用Android开发,感兴趣的朋友可以了解下
    2021-03-03
  • Flutter实现底部弹窗效果

    Flutter实现底部弹窗效果

    本文详细讲解了Flutter实现底部弹窗效果的方法,文中通过示例代码介绍的非常详细。对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-11-11
  • Android实现手势滑动和简单动画效果

    Android实现手势滑动和简单动画效果

    这篇文章主要为大家详细介绍了Android实现手势滑动和简单动画效果,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-05-05
  • Android自定义View实现圆弧进度的效果

    Android自定义View实现圆弧进度的效果

    这篇文章主要为大家详细介绍了Android自定义View实现圆弧进度的效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-01-01
  • Android自定义view实现拖拽选择按钮

    Android自定义view实现拖拽选择按钮

    这篇文章主要为大家详细介绍了Android自定义view实现拖拽选择按钮,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-07-07
  • Android 常见的四种对话框实例讲解

    Android 常见的四种对话框实例讲解

    这篇文章主要介绍了android 常见的四种对话框实例讲解,非常不错,具有参考借鉴价值,对android 对话框相关知识感兴趣的朋友一起看看吧
    2016-09-09
  • Android OpenGL入门之GLSurfaceView

    Android OpenGL入门之GLSurfaceView

    这篇文章主要介绍了OpenGL入门知识,如何在Android中使用GLSurfaceView,如果对OpenGL感兴趣的同学,可以参考下
    2021-04-04
  • Android连接MySQL数据库并进行增删改查操作示例讲解

    Android连接MySQL数据库并进行增删改查操作示例讲解

    这篇文章主要介绍了Android 连接MySQL数据库并进行增删改查操作示例讲解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-08-08
  • Android学习项目之简易版微信为例(二)

    Android学习项目之简易版微信为例(二)

    这篇文章主要以简易版微信为例,实现简易版微信的登陆、注册界面的编写与简单交互,感兴趣的小伙伴们可以参考一下
    2016-06-06

最新评论