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 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 快速创建弹窗PopupWindow、提示框AlertDialog、列表对话框Dialog -> 正文阅读

[移动开发]快速创建弹窗PopupWindow、提示框AlertDialog、列表对话框Dialog

快速创建弹窗PopupWindow、提示框AlertDialog、列表对话框Dialog


1.创建PopupWindow:

01.创建PopupWindow的布局文件:
注意:设置了多个Item,不需要时可以选择隐藏

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/color_tran">

    <LinearLayout
        android:layout_width="@dimen/dp_320"
        android:layout_height="wrap_content"
        android:background="@drawable/dialog_bg"
        android:orientation="vertical">

        <RelativeLayout
            android:id="@+id/layout1"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_60">

            <com.hikvision.showexamplepad101.widget.TextDrawable
                android:id="@+id/tv1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginLeft="@dimen/dp_32"
                android:text="IP"
                android:textColor="@color/color_333333"
                android:textSize="@dimen/sp_20" />

            <Switch
                android:id="@+id/switch1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="@dimen/dp_32"
                android:checked="false"
                android:visibility="gone" />

        </RelativeLayout>

        <TextView
            android:id="@+id/line1"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginLeft="@dimen/dp_32"
            android:layout_marginRight="@dimen/dp_32"
            android:background="@color/gray_line" />

        <RelativeLayout
            android:id="@+id/layout2"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_60">

            <com.hikvision.showexamplepad101.widget.TextDrawable
                android:id="@+id/tv2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginLeft="@dimen/dp_32"
                android:text="账号"
                android:textColor="@color/color_333333"
                android:textSize="@dimen/sp_20" />

            <Switch
                android:id="@+id/switch2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="@dimen/dp_32"
                android:checked="false"
                android:visibility="gone" />
        </RelativeLayout>

        <TextView
            android:id="@+id/line2"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginLeft="@dimen/dp_32"
            android:layout_marginRight="@dimen/dp_32"
            android:background="@color/gray_line"
            android:visibility="gone" />

        <RelativeLayout
            android:id="@+id/layout3"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_60"
            android:visibility="gone">

            <com.hikvision.showexamplepad101.widget.TextDrawable
                android:id="@+id/tv3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginLeft="@dimen/dp_32"
                android:text="账号"
                android:textColor="@color/color_333333"
                android:textSize="@dimen/sp_20" />

            <Switch
                android:id="@+id/switch3"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="@dimen/dp_25"
                android:checked="false"
                android:visibility="gone" />
        </RelativeLayout>

        <TextView
            android:id="@+id/line3"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginLeft="@dimen/dp_32"
            android:layout_marginRight="@dimen/dp_32"
            android:background="@color/gray_line"
            android:visibility="gone" />

        <RelativeLayout
            android:id="@+id/layout4"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_60"
            android:visibility="gone">

            <com.hikvision.showexamplepad101.widget.TextDrawable
                android:id="@+id/tv4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginLeft="@dimen/dp_32"
                android:text="账号"
                android:textColor="@color/color_333333"
                android:textSize="@dimen/sp_20" />

            <Switch
                android:id="@+id/switch4"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="@dimen/dp_32"
                android:checked="false"
                android:visibility="gone" />
        </RelativeLayout>

        <TextView
            android:id="@+id/line4"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginLeft="@dimen/dp_32"
            android:layout_marginRight="@dimen/dp_32"
            android:background="@color/gray_line"
            android:visibility="gone" />

        <RelativeLayout
            android:id="@+id/layout5"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_60"
            android:visibility="gone">

            <com.hikvision.showexamplepad101.widget.TextDrawable
                android:id="@+id/tv5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:layout_marginLeft="@dimen/dp_32"
                android:text="账号"
                android:textColor="@color/color_333333"
                android:textSize="@dimen/sp_20" />

            <Switch
                android:id="@+id/switch5"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentEnd="true"
                android:layout_centerVertical="true"
                android:layout_marginRight="@dimen/dp_32"
                android:checked="false"
                android:visibility="gone" />
        </RelativeLayout>
    </LinearLayout>
</RelativeLayout>

02.创建PopupWindow:

    if (null == cameraControlPopWindow)
    {
        val view = layoutInflater.inflate(R.layout.base_dialog_item_large, null)
        view.line1.visibility = if (confType == ConfType.LOCAL_PTOP) View.GONE else View.VISIBLE
        view.layout2.visibility = if (confType == ConfType.LOCAL_PTOP) View.GONE else View.VISIBLE
        view.tv1.text = "本地会场"
        view.tv2.text = "对方会场"
        view.layout1.setOnClickListener {
           //TODO 点击事件
        }
        view.layout2.setOnClickListener {
          //TODO 点击事件
        }
        cameraControlPopWindow = PopupWindow(
            view,
            ViewGroup.LayoutParams.WRAP_CONTENT,
            ViewGroup.LayoutParams.WRAP_CONTENT,
            true
        )
        //解决6.0以下系统点击外部不会自动消失的问题
        cameraControlPopWindow!!.setBackgroundDrawable(getDrawable())
        cameraControlPopWindow!!.isOutsideTouchable = true
        cameraControlPopWindow!!.isFocusable = true
    }
    if (cameraControlPopWindow!!.isShowing)
    {
        cameraControlPopWindow!!.dismiss()
    } else
    {
        cameraControlPopWindow!!.showAsDropDown(cameraControlIcon, 0, 10, Gravity.BOTTOM)
    }

2.创建AlertDialog:

01.创建AlertDialog的布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/layout1"
    android:gravity="center_horizontal"
    >
    <Button android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="显示带取消、中立和确定按钮的对话框"/>

    <Button android:id="@+id/button2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="显示列表的对话框"/>

    <Button android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="显示带单选列表对话框"/>

    <Button android:id="@+id/button4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="显示带多选列表对话框"/>

</LinearLayout>

02.创建AlertDialog

class MainActivity : AppCompatActivity(), OnRefreshListener, OnRefreshLoadMoreListener,
    MainContract.View {

    //页码
    private var currentPage = 1

    //数据源
    private var mList = ArrayList<Data>()

    private lateinit var mJokeAdapter: NewsAdapter

    private var refreshLayout: SmartRefreshLayout? = null
    private var mJokeListView: RecyclerView? = null
    private lateinit var mPresenter: MainPresenter

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        refreshLayout = findViewById(R.id.refreshLayout)
        mJokeListView = findViewById(R.id.mJokeListView)
        mJokeAdapter = NewsAdapter()
        mPresenter = MainPresenter()
        initList()
        mPresenter.getData(0, 0)
    }

    override fun onStart() {
        super.onStart()
        mPresenter.takeView(this)
    }
    
    override fun refreshView(orientation: Int, data: List<Data>) {
        if (orientation == 0) {
            refreshLayout?.finishRefresh()
            //列表要清空
            mList.clear()
            mList.addAll(data)
            mJokeAdapter.submitList(mList)
            //适配器要全部刷新
            mJokeAdapter.notifyDataSetChanged()
        } else if (orientation == 1) {
            refreshLayout?.finishLoadMore()

            //上一次的最大值
            val positionStart = mList.size

            mList.addAll(data)
            //需要注意:submitList()方法不能传参数MutableList
            mJokeAdapter.submitList(mList)
            //局部刷新
            mJokeAdapter.notifyItemRangeInserted(positionStart, data.size)

        }
    }

    //初始化列表
    private fun initList() {

        //刷新组件
        refreshLayout?.setRefreshHeader(ClassicsHeader(this))
        refreshLayout?.setRefreshFooter(ClassicsFooter(this))

        //监听
        refreshLayout?.setOnRefreshListener(this)
        refreshLayout?.setOnRefreshLoadMoreListener(this)

        mJokeListView?.layoutManager = LinearLayoutManager(this)

        //设置适配器
        mJokeListView?.adapter = mJokeAdapter

    }

    override fun onRefresh(refreshLayout: RefreshLayout) {
        currentPage = 1
        mPresenter.getData(currentPage, 0)
    }

    override fun onLoadMore(refreshLayout: RefreshLayout) {
        currentPage += 1
        mPresenter.getData(currentPage, 1)
    }
}


3.创建列表对话框Dialog:

01.创建列表的适配器Adapter:

public class DialogListAdapter extends BaseAdapter {

    private List<HashMap<String,String>> mapList;
    private LayoutInflater inflater;
    private Context mContext;

    public DialogListAdapter(Context context, List<HashMap<String,String>>list){
        this.mContext = context;
        this.mapList = list;
        inflater = LayoutInflater.from(mContext);

    }

    @Override
    public int getCount() {
        return mapList.size();  //数据源的长度
    }

    @Override
    public Object getItem(int position) {
        return mapList.get(position); //返回数据源的其中某一个对象
    }

    @Override
    public long getItemId(int position) {
        return position; //返回adapter中的其中一个项的id
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        myViewHolder hv;
        if (null==convertView){
            hv = new myViewHolder();
            convertView = inflater.inflate(R.layout.adapter_dialog_view,null,false);
            hv.tvName = convertView.findViewById(R.id.tvName);
            hv.tvCountry = convertView.findViewById(R.id.tvCountry);
            hv.agree = convertView.findViewById(R.id.agree);
            hv.disAgree = convertView.findViewById(R.id.disAgree);
            convertView.setTag(hv);

        }else {
            hv = (myViewHolder)convertView.getTag();
        }
        //一定要判刑断下数据源是否为空,否则很大几率就crash了
        if (mapList!=null && !mapList.isEmpty()){
            hv.tvName.setText(mapList.get(position).get("name"));
            hv.tvCountry.setText(mapList.get(position).get("country"));
            //设置监听事件
            hv.agree.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Toast.makeText(mContext, mapList.get(position).get("name"), Toast.LENGTH_SHORT).show();
                }
            });
            //设置监听事件
            hv.disAgree.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Toast.makeText(mContext, mapList.get(position).get("country"), Toast.LENGTH_SHORT).show();
                }
            });
        }
        return convertView;
    }
liebiao
    class myViewHolder{
        TextView tvName;
        TextView tvCountry;
        Button agree;
        Button disAgree;
    }

}

02.创建列表Dialog:

public class MainActivity extends AppCompatActivity {

    private DialogListAdapter listAdapter;
    private List<HashMap<String, String>> lists = new ArrayList<>();
    String[] names = {"Tom", "jane", "kangkang", "mike"};
    String[] countries = {"china", "japan", "germany", "usa"};

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initViewDatas();
        findViewById(R.id.bt).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                show_adapter(v);
            }
        });

    }
    /**
     * 初始化adapter并填充数据
     */
    void initViewDatas() {
        listAdapter = new DialogListAdapter(this, lists);
        for (int i = 0; i < 10; i++) {
            HashMap<String, String> map = new HashMap<>();
            map.put("name", names[i % 4]);
            map.put("country", countries[i % 4]);
            lists.add(map);
        }
        listAdapter.notifyDataSetChanged();

    }

    //这是一个button的onclick事件
    public void show_adapter(View view) {

        AlertDialog.Builder adapterBuilder = new AlertDialog.Builder(this);
        adapterBuilder.setIcon(R.mipmap.ic_launcher_round);
        adapterBuilder.setTitle("This is Adapter Dialog");
        ListView listView = new ListView(this);

        adapterBuilder.setView(listView);
        listView.setAdapter(listAdapter);

        //设置适配器,设置监听事件,但是点击后会退出对话框
//        adapterBuilder.setAdapter(listAdapter, new DialogInterface.OnClickListener() {
//            @Override
//            public void onClick(DialogInterface dialog, int which) {
//                HashMap<String, String> selectMap = (HashMap<String, String>) listAdapter.getItem(which);
//                Toast.makeText(MainActivity.this, selectMap.get("name"), Toast.LENGTH_SHORT).show();
//            }
//        });

        adapterBuilder.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                //do what you want
            }
        });

        adapterBuilder.setNegativeButton("Cancle", new DialogInterface.OnClickListener() {
            @Override
            public void onClick(DialogInterface dialog, int which) {
                //do what you want
            }
        });
        adapterBuilder.show();
    }
}


  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-02-26 11:42:07  更:2022-02-26 11:45:12 
 
开发: 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/24 16:09:47-

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