Android PopUpWindow使用详解
作者:青素i 时间:2023-06-30 06:33:11
概述
最关键的区别是AlertDialog不能指定显示位置,只能默认显示在屏幕最中间(当然也可以通过设置WindowManager参数来改变位置)。而PopupWindow是可以指定显示位置的,随便哪个位置都可以,更加灵活。
声明
构造方法
//一:
public PopupWindow (Context context)
//二:
public PopupWindow(View contentView)
//三:
public PopupWindow(View contentView, int width, int height)
//四:
public PopupWindow(View contentView, int width, int height, boolean focusable)
一个窗口标准的PopupWindow应该有三个参数 上下文 宽、高
显示函数
//相对某个控件的位置(正左下方),无偏移
showAsDropDown(View anchor):
//相对某个控件的位置,有偏移;xoff表示x轴的偏移
showAsDropDown(View anchor, int xoff, int yoff):
//正中央Gravity.CENTER,下方Gravity.BOTTOM等
showAtLocation(View parent, int gravity, int x, int y):
这里有两种显示方式:
1、显示在某个指定控件的下方
showAsDropDown(View anchor):
showAsDropDown(View anchor, int xoff, int yoff);
2、指定父视图,显示在父控件的某个位置(Gravity.TOP,Gravity.RIGHT等)
showAtLocation(View parent, int gravity, int x, int y);
3、view可以是任意组件
正常声明一个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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="#000"
android:text="我是一个PopupWindow"
/>
</LinearLayout>
创建PopupWindow
//将xml文件转成view
View view = LayoutInflater.from(MainActivity.this).inflate(R.layout.popupwindow,null);
//创建popupWindow
PopupWindow popupWindow = new PopupWindow(MainActivity.this);
//载入布局
popupWindow.setContentView(view);
//设置宽高
popupWindow.setWidth(ViewGroup.LayoutParams.WRAP_CONTENT);
popupWindow.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
设置显示位置
//设置显示位置 正左下方无偏移
popupWindow.showAsDropDown(mTvShow);
完整代码
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.PopupWindow;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
TextView mTvShow;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mTvShow = findViewById(R.id.tvshow);
mTvShow.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
myPopupWindow();
}
});
}
private void myPopupWindow(){
//将xml文件转成view
View view = LayoutInflater.from(MainActivity.this).inflate(R.layout.popupwindow,null);
PopupWindow popupWindow = new PopupWindow(MainActivity.this);
popupWindow.setContentView(view);
popupWindow.setWidth(ViewGroup.LayoutParams.WRAP_CONTENT);
popupWindow.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
//PopupWindow popupWindow = new PopupWindow(MainActivity.this,ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT,true);
//进行正常页面设置
//设置显示位置 正左下方无偏移
popupWindow.showAsDropDown(mTvShow);
//popupwindow 点击外围页面 不会自动消失 因此需要手动设置一个关闭
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
popupWindow.dismiss();
}
});
}
}
来源:https://blog.csdn.net/Carryi/article/details/120763286
标签:Android,PopUpWindow
0
投稿
猜你喜欢
C语言实现餐饮管理系统
2023-03-26 06:40:37
Java中ByteArrayInputStream和ByteArrayOutputStream用法详解
2023-03-01 11:22:48
Android studio so库找不到问题解决办法
2023-10-28 02:20:49
Android 中 EventBus 的使用之多线程事件处理
2021-09-14 13:34:12
C# Web应用调试开启外部访问步骤解析
2023-04-01 15:24:01
C# 得到某一天的起始和截止时间的代码
2021-11-13 10:57:54
java的三种随机数生成方式
2022-03-06 13:43:57
MyBatis-Plus中的逻辑删除使用详解
2022-12-29 15:07:40
Android SearchView搜索控件使用方法详解
2022-07-09 16:49:21
Android开源项目PullToRefresh下拉刷新功能详解
2022-02-02 15:14:54
c#使用linq把多列的List转化为只有指定列的List
2022-07-04 12:00:31
1小时快速上手RabbitMQ(简介及安装过程)
2022-04-26 15:49:40
Android添加用户组及自定义App权限的方法
2022-09-15 20:08:53
Android源代码仓库及其管理工具Repo分析详解
2021-09-01 12:16:18
解决在for循环中remove list报错越界的问题
2022-01-12 15:27:56
C#中的除法运算符与VB.NET中的除法运算符
2022-04-01 10:52:56
Java中对List集合的常用操作详解
2023-05-02 23:52:47
浅析Java中的异常处理机制
2021-08-19 05:42:48
详解Android Flutter中SliverAppBar的使用教程
2023-06-23 12:11:27
android图片处理之让图片变成圆形
2021-08-01 00:29:53