91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

Android編程怎么實現帶有單選按鈕和復選按鈕的dialog功能

發布時間:2022-04-07 17:11:30 來源:億速云 閱讀:134 作者:iii 欄目:編程語言

這篇文章主要介紹“Android編程怎么實現帶有單選按鈕和復選按鈕的dialog功能”,在日常操作中,相信很多人在Android編程怎么實現帶有單選按鈕和復選按鈕的dialog功能問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Android編程怎么實現帶有單選按鈕和復選按鈕的dialog功能”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

帶有單選按鈕的dialog:

package example.com.myapplication;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.widget.Toast;
public class MainActivity extends Activity {
  //聲明選中項變量
  private int selectedCityIndex = 0;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //定義城市數組
    final String[] arrayCity = new String[] { "杭州", "紐約", "威尼斯", "北海道" };
    //實例化AlertDialog對話框
    Dialog alertDialog = new AlertDialog.Builder(this)
        .setTitle("你最喜歡哪個地方?")            //設置標題
        .setIcon(R.mipmap.ic_launcher)        //設置圖標
        //設置對話框顯示一個單選List,指定默認選中項,同時設置監聽事件處理
        .setSingleChoiceItems(arrayCity, 0, new DialogInterface.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {
            selectedCityIndex = which;        //選中項的索引保存到選中項變量
          }
        })
        //添加取消按鈕并增加監聽處理
        .setNegativeButton("取消", new DialogInterface.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {
            // TODO Auto-generated method stub
          }
        })
        //添加確定按鈕并增加監聽處理
        .setPositiveButton("確認", new DialogInterface.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {
            Toast.makeText(getApplication(), arrayCity[selectedCityIndex], Toast.LENGTH_SHORT).show();
          }
        })
        .create();
    alertDialog.show();
  }
}

帶有復選按鈕的dialog代碼:

package example.com.myapplication;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.Dialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.widget.Toast;
public class MainActivity extends Activity {
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    //定義運動數組
    final String[] arraySport = new String[] { "足球", "籃球", "網球", "乒乓球" };
    final boolean[] arraySportSelected = new boolean[] {false, false, false, false};
    //實例化AlertDialog對話框
    Dialog alertDialog = new AlertDialog.Builder(this)
        .setTitle("你喜歡哪些運動?")            //設置標題
        .setIcon(R.mipmap.ic_launcher)        //設置圖標
        //設置對話框顯示一個復選List,指定默認選中項,同時設置監聽事件處理
        .setMultiChoiceItems(arraySport, arraySportSelected,
            new DialogInterface.OnMultiChoiceClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which, boolean isChecked) {
            arraySportSelected[which] = isChecked;       //選中項的布爾真假保存到選中項變量
          }
        })
        //添加取消按鈕并增加監聽處理
        .setPositiveButton("確認", new DialogInterface.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {
            StringBuilder stringBuilder = new StringBuilder();
            for (int i = 0; i < arraySportSelected.length; i++) {
              if (arraySportSelected[i] == true){
                stringBuilder.append(arraySport[i] + "、");
              }
            }
            Toast.makeText(getApplication(), stringBuilder.toString(), Toast.LENGTH_SHORT).show();
          }
        })
        //添加確定按鈕并增加監聽處理
        .setNegativeButton("取消", new DialogInterface.OnClickListener() {
          @Override
          public void onClick(DialogInterface dialog, int which) {
            // TODO Auto-generated method stub
          }
        })
        .create();
    alertDialog.show();
  }
}

到此,關于“Android編程怎么實現帶有單選按鈕和復選按鈕的dialog功能”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

AI

略阳县| 交口县| 双城市| 南投县| 清水河县| 买车| 临桂县| 温州市| 河东区| 澄江县| 宜兴市| 油尖旺区| 海丰县| 南汇区| 湘潭市| 平罗县| 兰西县| 郑州市| 林周县| 宜兰市| 鄱阳县| 丰顺县| 长宁县| 鲁甸县| 安塞县| 和政县| 岐山县| 新营市| 会理县| 中牟县| 济源市| 安达市| 海晏县| 彭泽县| 沙湾县| 尼玛县| 丹阳市| 阿克苏市| 荔波县| 富裕县| 鄢陵县|