PopupWindow 最基础的使用方法
点击弹出一些条目 所以得写一个布局文件来装这些控件,这个布局文件就写你点击后想出现的界面
例如
在这里插入代码片
<?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">
<TextView
android:id="@+id/pop_tv1"
android:text="jj"
android:textSize="30sp"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:textSize="30sp"
android:text="gg"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:textSize="30sp"
android:text="hh"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
然后对PopupWindow控制进行实例化和设置宽高
在这里插入代码片
// popwnd 方法体外设置为全局变量 PopupWindow popwnd;
View contentView=LayoutInflater.from(MainActivity.this).inflate(R.layout.popuplayout,null);
popwnd=new PopupWindow(contentView);
popwnd.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);
popwnd.setHeight(ViewGroup.LayoutParams.MATCH_PARENT);
然后把 popwnd 与点击按钮关联
在这里插入代码片
popwnd.showAsDropDown(but1); // but1是我主界面的一个按钮
//这行的作用就是 当点击这个按钮后会跳转出我刚刚写好的popwnd的界面
popwnd.dismiss(); 可以让显示的popwindow界面消失