亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

怎么在Android中利用AlertDialog實現一個多選框功能

發布時間:2020-11-27 17:34:36 來源:億速云 閱讀:246 作者:Leah 欄目:移動開發

怎么在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實現一個多選框功能的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大新县| 博爱县| 蓬溪县| 屯门区| 南漳县| 东乌珠穆沁旗| 朝阳市| 迁安市| 巴楚县| 泸州市| 临武县| 闵行区| 藁城市| 安阳市| 神木县| 通化县| 玉门市| 龙胜| 凌海市| 镇平县| 黔西县| 介休市| 闽清县| 郸城县| 望谟县| 陕西省| 疏附县| 子长县| 沙洋县| 余干县| 通榆县| 临沭县| 运城市| 永胜县| 利津县| 唐山市| 宣汉县| 梨树县| 罗田县| 尉犁县| 巴彦淖尔市|