IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> PopWindow弹窗 -> 正文阅读

[移动开发]PopWindow弹窗

实现效果:

单独封装PopWindow类,点击类目内容回填,弹窗渐变,弹窗后主界面失去焦点并变暗


PopWindow类抽取

新建一个ShowPopWindow.java
popwindow样式

<?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="wrap_content"
    android:background="@drawable/shape_listview"
    android:orientation="vertical">

    <ListView
        android:id="@+id/lv_ck"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="10dp"
        android:layout_marginRight="20dp"
        android:cacheColorHint="#00000000"
        android:overScrollMode="never" />


    <TextView
        android:id="@+id/cancel_pop"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_marginLeft="20dp"
        android:layout_marginTop="10dp"
        android:layout_marginRight="20dp"
        android:layout_marginBottom="10dp"
        android:background="@drawable/shape_corner"--这是圆角矩形样式
        android:gravity="center"
        android:text="取消"
        android:textColor="@color/black" />

</LinearLayout>

shape_listview 渐变样式

	<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="@color/white" //白灰渐变
        android:endColor="@color/slateGray"
        android:angle="270"
        />

<!--    <solid android:color="@color/white" />-->
    <corners
        android:bottomRightRadius="4dip"
        android:bottomLeftRadius="4dip"
        android:topLeftRadius="4dip"
        android:topRightRadius="4dip"
        />
    <corners android:radius="20dp"/>
    <stroke android:width="1dp" android:color="@color/black" />
</shape>
public class ShowPopWindow {
    private final Context mContext;
    private final Window mWindow;
    private final ArrayAdapter mAdapter;
    private final int res;
    private PopupWindow popupWindow;
    private View popView;
    private int clickPos = -1;


    public ShowPopWindow(Context context, int convertViewResource, Window window, ArrayAdapter adapter) {
        this.mContext = context;
        this.mWindow = window;
        this.res = convertViewResource;
        this.mAdapter = adapter;
    }

    public void initPopWindow() {
        popView = LayoutInflater.from(mContext).inflate(R.layout.popupwindow, null);
        View rootView = LayoutInflater.from(mContext).inflate(res, null);

        TextView cancle = popView.findViewById(R.id.cancel_pop);
        ListView lv_ck = popView.findViewById(R.id.lv_ck);
        lv_ck.setAdapter(mAdapter);

        popupWindow = new PopupWindow(popView, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
        popupWindow.setBackgroundDrawable(null);
        popupWindow.setAnimationStyle(com.sab.libui.baseui.R.style.PopAnimation);
        popupWindow.setOutsideTouchable(true);
        popupWindow.setTouchable(true);
        popupWindow.setFocusable(true);

        //设置背景变暗
        WindowManager.LayoutParams lp = mWindow.getAttributes();
        lp.alpha = 0.7f;
        mWindow.setAttributes(lp);

		//在主activity写使其回写点击内容
//        popupWindow.setOnDismissListener(new PopupWindow.OnDismissListener() {
//            @Override
//            public void onDismiss() {
//                WindowManager.LayoutParams lp = mWindow.getAttributes();
//                lp.alpha = 1f;
//                mWindow.setAttributes(lp);
//            }
//        });

        cancle.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                clickPos = -1;
                lp.alpha = 1f;
                popupWindow.dismiss();
            }
        });

        lv_ck.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                clickPos = position;
                lp.alpha = 1f;
                popupWindow.dismiss();
            }
        });

        popupWindow.showAtLocation(rootView, Gravity.BOTTOM, 0, -50);//设置弹窗位置

    }

    public PopupWindow getPopWin() {
        return popupWindow;//返回弹窗对面用于调用界面监听弹窗关闭事件,回填内容
    }

    public View getPopView() {
        return popView;
    }

    public int getClickPos() {
        return clickPos;//返回点击的position
    }
}

调用方法及点击回填事件

//创建对象
Window mWindow=getWindow();
showPopWindow = new ShowPopWindow(GoodsMoveActivity.this, 使用该组件的界面, mWindow, adapter);

showPopWindow.initPopWindow();
PopupWindow popWin = showPopWindow.getPopWin();
View popView = showPopWindow.getPopView();

popWin.setOnDismissListener(new PopupWindow.OnDismissListener() {
 @Override
 public void onDismiss() {
     WindowManager.LayoutParams lp = mWindow.getAttributes();
     lp.alpha = 1f;
     mWindow.setAttributes(lp);
     int clickPos = showPopWindow.getClickPos();
     if (clickPos != -1) {
         String item = adapter.getItem(clickPos);
         vb.etCk.setText(item);
     }
 }
});
  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-05-07 11:18:35  更:2022-05-07 11:19:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/25 0:58:27-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码