PopupWindow 最基础的使用方法

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界面消失

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值