您好,登錄后才能下訂單哦!
怎么在Android中利用AlertDialog實現一個多選框功能?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
在使用AlertDialog實現單選和多選對話框時,分別設置setSingleChoiceItems()和setMultiChoiceItems()函數。
數據源數組:
<resources> <!--單選--> <string-array name="arr_weather"> <item >晴</item> <item >多云</item> <item >小雨</item> <item >中雨</item> </string-array> <!--多選--> <string-array name="arr_grasslandGreatType"> <item >羊草</item> <item >牛草</item> </string-array> </resources>
Activity中的主要代碼:
點擊事件:
case R.id.edt_sampleWeather:// 天氣選取 String[] arrWeather = getResources().getStringArray(R.array.arr_weather); showAlertDialog(arrWeather, selectWeatherId, 0, tv_sampleWeather); break; case R.id.edt_grasslandGreatType:// 草地優勢種選擇 showMultiDialog(); break;
對應方法:
(1)showAlertDialog()方法,實現單選效果,selectWeatherId 設置選定的條目位置
private void showAlertDialog(final String[] items, int selectId, final int type, final TextView tView) { AlertDialog.Builder builder = new AlertDialog.Builder(CreatePointActivity.this); builder.setSingleChoiceItems(items, selectId, new DialogInterface.OnClickListener() {// 第二個參數是設置默認選中哪一項-1代表默認都不選 @Override public void onClick(DialogInterface dialog, int which) { tView.setText(items[which]); if (type == 0) { selectWeatherId = which; } else if (type == 1) { selectGrassLandTypeId = which; } else if (type == 2) { selectAgroTypeId = which; } dialog.dismiss(); } }); AlertDialog dialog = builder.create(); dialog.show(); dialog.setCanceledOnTouchOutside(true);// dialog彈出后,點擊界面其他部分dialog消失 }
(2)showMultiDialog()方法,實現多選效果
boolean[] selected = new boolean[] { false, false };//默認選中位置 private void showMultiDialog() { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setTitle("草地優勢種選擇列表"); DialogInterface.OnMultiChoiceClickListener mutiListener = new DialogInterface.OnMultiChoiceClickListener() { @Override public void onClick(DialogInterface dialogInterface, int which, boolean isChecked) { selected[which] = isChecked; } }; builder.setMultiChoiceItems(R.array.arr_grasslandGreatType, selected, mutiListener); DialogInterface.OnClickListener btnListener = new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int which) { String selectedStr = ""; for (int i = 0; i < selected.length; i++) { if (selected[i] == true) { selectedStr = selectedStr + " " + getResources().getStringArray(R.array.arr_grasslandGreatType)[i]; } } if (!TextUtils.isEmpty(selectedStr)) { tv_grasslandGreatType.setText(selectedStr); } else { tv_grasslandGreatType.setText("暫無選擇"); } } }; builder.setNegativeButton("取消", null); builder.setPositiveButton("確定", btnListener); AlertDialog dialog = builder.create(); dialog.show(); dialog.setCanceledOnTouchOutside(true);// dialog彈出后,點擊界面其他部分dialog消失 }
看完上述內容,你們掌握怎么在Android中利用AlertDialog實現一個多選框功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。