溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中怎么實現(xiàn) ListView多選模式

發(fā)布時間:2021-06-29 16:07:59 來源:億速云 閱讀:220 作者:Leah 欄目:移動開發(fā)

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)Android中怎么實現(xiàn) ListView多選模式,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

ListView使用多選模式好處

交互與數(shù)據(jù)分離,在多選狀態(tài)下不需要修改數(shù)據(jù)源,在最后確定的時候獲取選擇索引來確定選擇的數(shù)據(jù)。

ListView模式

  • CHOICE_MODE_NONE:普通模式;

  • CHOICE_MODE_SINGLE:單選模式;

  • CHOICE_MODE_MULTIPLE:多選模式;

  • CHOICE_MODE_MULTIPLE_MODAL:多選模式(與ActionMode配合使用)。

CHOICE_MODE_MULTIPLECHOICE_MODE_MULTIPLE_MODAL 區(qū)別:
前者能夠同時響應(yīng)ListView Item點擊事件,與Item選擇事件;
后者在未進入ActionMode模式下響應(yīng)Item點擊事件,不響應(yīng)Item選擇事件。在進入ActionMode模式后不響應(yīng)Item點擊事件,響應(yīng)Item選擇事件。
同時后者如果Item長按能夠自動進入ActionMode模式(也可以使用 ListView.setItemChecked(0,true)來選擇一項Item進入ActionMode模式),當(dāng)所有Item全部取消選擇后,自動退出ActionMode模式。
CHOICE_MODE_MULTIPLE_MODAL使用方式:

listView = (ListView) findViewById(R.id.list_view);
listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
listView.setMultiChoiceModeListener(new ListView.MultiChoiceModeListener());

設(shè)置方式

  1. XML布局文件設(shè)置(多選模式設(shè)置):

    <ListView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:choiceMode="multipleChoice"/>
  2. 代碼設(shè)置:
    listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);

選擇

ListView多選狀態(tài)是記錄到ListView控件中,由其父類AbsListView實現(xiàn)。
列表Item最外層需要實現(xiàn)Checkable接口,比如CheckBox、CheckedTextView等控件。
如果需要使用容器類控件比如LinearLayout,可以重寫控件,實現(xiàn)Checkable接口。
比如:

public class CheckableLinearLayout extends LinearLayout implements Checkable {

    private boolean mChecked = false;

    public CheckableLinearLayout(Context context) {
        super(context);
    }

    public CheckableLinearLayout(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
    }

    public CheckableLinearLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void toggle() {
        setChecked(!mChecked);
    }

    @Override
    public boolean isChecked() {
        return mChecked;
    }

    @Override
    public void setChecked(boolean checked) {
        if (mChecked != checked) {
            mChecked = checked;
            refreshDrawableState();
            for (int i = 0, len = getChildCount(); i < len; i++) {
                View child = getChildAt(i);
                if(child instanceof Checkable){
                    ((Checkable) child).setChecked(checked);
                }
            }
        }
    }

}

獲取選擇數(shù)據(jù)

獲取到最終選擇結(jié)果為選中項索引集合,是一個SparseBooleanArray,記錄了操作過的item選擇狀態(tài)(如果選中item再取消同樣會記錄,狀態(tài)為false)。
SparseBooleanArray checkedItemPositions = listView.getCheckedItemPositions();

API

// 清除選中
public void clearChoices();
// 根據(jù)索引判斷是否選中
public boolean isItemChecked(int position);
// 獲取選中數(shù)量
public int getCheckedItemCount();
// 根據(jù)索引設(shè)置選中狀態(tài)
public void setItemChecked(int position, boolean value);

注意

  • 如果ListView Item內(nèi)有按鈕會搶Item點擊事件,解決方法為在Item根布局增加
    android:descendantFocusability="blocksDescendants"

  • ActionMode監(jiān)聽回調(diào)有兩種ActionMode.CallbackMultiChoiceModeListener,后者繼承自前者,并新增一個item選擇與取消選擇的回調(diào)方法,但是此方法只在CHOICE_MODE_MULTIPLE_MODAL模式下有效,所以MultiChoiceModeListener監(jiān)聽只適用于CHOICE_MODE_MULTIPLE_MODAL模式。

  • ListView如果使用CHOICE_MODE_MULTIPLE_MODAL模式,可以自動進入ActionMode模式,使用setMultiChoiceModeListener(MultiChoiceModeListener listener)設(shè)置監(jiān)聽回調(diào)。

上述就是小編為大家分享的Android中怎么實現(xiàn) ListView多選模式了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI