Android 自定义View - PopupWindow结合CheckedTextView实现底部弹出单选或多选菜单

前言

最近项目有如下需求:

image

想了想,正好没有这样的弹窗,就用PopupWindow自己做一个吧

先上效果:

image

分析

有个title,一个底部按钮,中间是一个列表,这里使用ListView来做,内部的item使用CheckedTextView

可以通过外部设置列表为单选还是多选


mPopup.setTagTxt(getString(R.string.choose_drawback_reason_of_refuse))//设置顶部title的内容
                .setButtomTxt(getString(R.string.cancel))//设置底部按钮内容
                .setChoiceMode(AbsListView.CHOICE_MODE_SINGLE);//单选

/**
     * 设置ListView的选择模式
     * 多选:AbsListView.CHOICE_MODE_MULTIPLE
     * 单选:AbsListView.CHOICE_MODE_SINGLE
     *
     * @param choiceMode
     * @return
     */
    public PopupWindowCheckChoose setChoiceMode(int choiceMode) {
        if (mListView != null) {
            mListView.setChoiceMode(choiceMode);
        }
        return this;
    }

选中了某个/些item后,获取选中的item的position列表

mListView.setOnItemClickListener((parent, view, position, id) -> {
            if (mLisenter != null) {
                ArrayList<Integer> positionList=new ArrayList<>();

                //获取选中的item的position列表
                SparseBooleanArray checkedItemPositions = mListView.getCheckedItemPositions();
                for (int i=0;i<mList.size();i++){
                    if (checkedItemPositions.get(i)){
                        positionList.add(i);
                    }
                }

                mLisenter.onItemClick(positionList);
            }
        });

具体实现

PopupWindowCheckChoose

package com.example.popwindowcheckedtextview;

import android.app.Activity;
import android.content.Context;
import android.graphics.drawable.ColorDrawable;
import android.util.SparseBooleanArray;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.WindowManager;
import android.widget.BaseAdapter;
import android.widget.CheckedTextView;
import android.widget.ListView;
import android.widget.PopupWindow;
import android.widget.TextView;

import com.zhy.autolayout.utils.AutoUtils;

import java.util.ArrayList;

/**
 * Description:从底部弹出的单选或多选的popupwindow
 * <p>
 * Author: zoey
 * Time: 2017/11/29 0029
 */
public class PopupWindowCheckChoose extends PopupWindow {

    private Activity mContext;

    /**
     * 列表和按钮的监听事件
     */
    private onEventLisenter mLisenter;

    /**
     * 父View
     */
    private View mView;
    /**
     * 顶部标题
     */
    private TextView mTvTag;
    /**
     * 底部按钮
     */
    private TextView mTvButtom;
    /**
     * 选择ListView
     */
    private ListView mListView;

    /**
     * 顶部标题内容
     */
    private String mTagTxt;
    /**
     * 底部按钮内容
     */
    private String mButtomTxt;

    /**
     * 数据源
     */
    private ArrayList<String> mList = new ArrayList<>();
    /**
     * 适配器
     */
    private CheckAdapter mAdapter;

    /**
     * 设置顶部内容
     *
     * @param tagTxt
     * @return
     */
    public PopupWindowCheckChoose setTagTxt(String tagTxt) {
        mTagTxt = tagTxt;
        if (mTvTag != null) {
            mTvTag.setText(mTagTxt);
        }
        return this;
    }

    /**
     * 设置底部按钮内容
     *
     * @param buttomTxt
     * @return
     */
    public PopupWindowCheckChoose setButtomTxt(String buttomTxt) {
        mButtomTxt = buttomTxt;
        if (mTvButtom != null) {
            mTvButtom.setText(mButtomTxt);
        }
        return this;
    }

    /**
     * 设置ListView的选择模式
     * 多选:AbsListView.CHOICE_MODE_MULTIPLE
     * 单选:AbsListView.CHOICE_MODE_SINGLE
     *
     * @param choiceMode
     * @return
     */
    public PopupWindowCheckChoose setChoiceMode(int choiceMode) {
        if (mListView != null) {
            mListView.setChoiceMode(choiceMode);
        }
        return this;
    }

    public PopupWindowCheckChoose(Activity context, ArrayList<String> list) {
        mContext = context;
        mList = list;

        initView();
        initLisenter();
    }

    /**
     * 展示Pop
     *
     * @param localAt
     */
    public void showPop(View localAt) {
        if (!this.isShowing()) {
            // 设置背景颜色变暗
            WindowManager.LayoutParams lp = mContext.getWindow().getAttributes();
            lp.alpha = 0.7f;
            mContext.getWindow().setAttributes(lp);

            showAtLocation(localAt, Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, 0);
        } else {
            this.dismiss();
        }
    }

    @Override
    public void dismiss() {
        if (this != null && this.isShowing()) {
            super.dismiss();
            //消失后,背景变回原来的颜色
            WindowManager.LayoutParams lp = mContext.getWindow().getAttributes();
            lp.alpha = 1f;
            mContext.getWindow().setAttributes(lp);
        }
    }

    /**
     * 初始化控件
     */
    public void initView() {
        mView = ((LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE))
                .inflate(R.layout.lay_popup_check_choose_buttom, null);

        this.setContentView(mView);
        this.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);
        this.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
        this.setFocusable(true);
        this.setAnimationStyle(R.style.pop_anim_style);
        this.setBackgroundDrawable(new ColorDrawable(mContext.getResources().getColor(R.color.T_mini_black)));

        mTvTag = mView.findViewById(R.id.tv_tag);
        mListView = mView.findViewById(R.id.lv_list);
        mTvButtom = mView.findViewById(R.id.tv_buttom);

        mAdapter = new CheckAdapter(mList);
        mListView.setAdapter(mAdapter);
    }

    /**
     * 对控件设置监听事件
     */
    public void initLisenter() {
        mListView.setOnItemClickListener((parent, view, position, id) -> {
            if (mLisenter != null) {
                ArrayList<Integer> positionList=new ArrayList<>();

                //获取选中的item的position列表
                SparseBooleanArray checkedItemPositions = mListView.getCheckedItemPositions();
                for (int i=0;i<mList.size();i++){
                    if (checkedItemPositions.get(i)){
                        positionList.add(i);
                    }
                }

                mLisenter.onItemClick(positionList);
            }
        });

        mTvButtom.setOnClickListener(v -> {
            if (mLisenter != null) {
                mLisenter.onClickButtom();
                dismiss();
            }
        });
    }

    public interface onEventLisenter {
        void onItemClick(ArrayList<Integer> positionList);//返回选中item的位置集合

        default void onClickButtom() {
        }//底部按钮点击事件
    }

    public void setOnEventLisenter(onEventLisenter lisenter) {
        mLisenter = lisenter;
    }

    class CheckAdapter extends BaseAdapter {

        ArrayList<String> list;

        public CheckAdapter(ArrayList<String> list) {
            this.list = list;
        }

        public ArrayList<String> getList() {
            return list;
        }

        public void setList(ArrayList<String> list) {
            this.list = list;
            notifyDataSetChanged();
        }

        @Override
        public int getCount() {
            return list.size();
        }

        @Override
        public String getItem(int position) {
            return list.get(position);
        }

        @Override
        public long getItemId(int position) {
            return position;
        }

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            final ViewHolder holder;
            String bean = list.get(position);

            if (convertView == null) {
                convertView = LayoutInflater.from(mContext).inflate(R.layout.item_lv_pop_choose, parent, false);
                holder = new ViewHolder();

                holder.ctvContent = convertView.findViewById(R.id.ctv_content);
                convertView.setTag(holder);

                //对于listview,注意添加这一行,即可在item上使用高度
                AutoUtils.autoPadding(convertView);
                AutoUtils.autoMargin(convertView);
                AutoUtils.autoTextSize(convertView);
                AutoUtils.autoSize(convertView);
            } else {
                holder = (ViewHolder) convertView.getTag();
            }

            boolean check = ((ListView) parent).isItemChecked(position);
            holder.ctvContent.setChecked(check);

            holder.ctvContent.setText(bean);
            return convertView;
        }
    }

    class ViewHolder {
        CheckedTextView ctvContent;
    }
}


TestActivity

package com.example.popwindowcheckedtextview;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.widget.AbsListView;
import android.widget.RelativeLayout;
import android.widget.TextView;

import com.zhy.autolayout.AutoLayoutActivity;

import java.util.ArrayList;

/**
 * Description:
 * <p>
 * Time: 2017/11/30 0030
 */
public class TestActivity extends AutoLayoutActivity {

    private TextView mTvContent;
    private RelativeLayout mRlContent;
    private PopupWindowCheckChoose mPopup;
    private ArrayList<String> mList=new ArrayList();

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_test);

        mTvContent = findViewById(R.id.tv_content);
        mRlContent = findViewById(R.id.rl_content);

        mList=getPopList();
        mPopup = new PopupWindowCheckChoose(this, mList);
        mPopup.setTagTxt(getString(R.string.choose_drawback_reason_of_refuse))//设置顶部title的内容
                .setButtomTxt(getString(R.string.cancel))//设置底部按钮内容
                .setChoiceMode(AbsListView.CHOICE_MODE_SINGLE);//单选

        mRlContent.setOnClickListener(v -> {
            mPopup.showPop(mTvContent);
        });

        //单选
        mPopup.setOnEventLisenter(positionList -> {
            mPopup.dismiss();
            mTvContent.setText(mList.get(positionList.get(0)));
        });
            //-----------------------------------
//        //多选
//        mPopup.setOnEventLisenter(positionList -> {
//            StringBuffer buffer=new StringBuffer();
//            for (int i=0;i<positionList.size();i++){
//                buffer.append(mList.get(positionList.get(i))+",");
//            }
//            mTvContent.setText(buffer.toString());
//        });
    }

    /**
     * 数据
     *
     * @return
     */
    public ArrayList<String> getPopList() {
        ArrayList<String> popList = new ArrayList<>();
        popList.add(getString(R.string.reason_draw_back_buy_more));
        popList.add(getString(R.string.reason_draw_back_not_receive));
        popList.add(getString(R.string.reason_draw_back_its_fake));
        popList.add(getString(R.string.reason_draw_back_buy_error));
        popList.add(getString(R.string.reason_draw_back_type_error));
        popList.add(getString(R.string.reason_draw_back_quality_problem));
        popList.add(getString(R.string.reason_draw_back_deal));
        popList.add(getString(R.string.reason_draw_back_no_info_of_logistics));
        popList.add(getString(R.string.reason_draw_back_no_goods));
        popList.add(getString(R.string.reason_draw_back_another_reason));
        return popList;
    }
}


传送门:https://github.com/Urwateryi/PopupWindowCheckedList

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,875评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,569评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,475评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,459评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,537评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,563评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,580评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,326评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,773评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,086评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,252评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,921评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,566评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,190评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,435评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,129评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,125评论 2 352

推荐阅读更多精彩内容