您好,登錄后才能下訂單哦!
這篇文章主要介紹“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功能”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。