Android之復選框對話框用法實例分析
更新時間:2015年09月15日 11:18:19 作者:Ruthless
這篇文章主要介紹了Android之復選框對話框用法,涉及Android頁面布局、對話框類等相關使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了Android之復選框對話框用法。分享給大家供大家參考。具體如下:
main.xml布局文件
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <EditText android:text="" android:id="@+id/editText" android:layout_width="fill_parent" android:layout_height="wrap_content" android:editable="false" android:cursorVisible="false" /> <Button android:text="顯示復選框對話框" android:id="@+id/button" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout>
array.xml數組
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="hobby"> <item>游泳</item> <item>打籃球</item> <item>登山</item> </string-array> </resources>
AlertActivity類
package com.ljq.dialog; import android.app.Activity; import android.app.Dialog; import android.app.AlertDialog.Builder; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; public class AlertDialog extends Activity { private EditText editText; private final static int DIALOG=1; boolean[] flags=new boolean[]{false,false,false};//初始復選情況 String[] items=null; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); items=getResources().getStringArray(R.array.hobby); editText=(EditText)findViewById(R.id.editText); Button button = (Button) findViewById(R.id.button); button.setOnClickListener(new View.OnClickListener() { public void onClick(View v) { // 顯示對話框 showDialog(DIALOG); } }); } /** * 創(chuàng)建復選框對話框 */ @Override protected Dialog onCreateDialog(int id) { Dialog dialog=null; switch (id) { case DIALOG: Builder builder=new android.app.AlertDialog.Builder(this); //設置對話框的圖標 builder.setIcon(R.drawable.header); //設置對話框的標題 builder.setTitle("復選框對話框"); builder.setMultiChoiceItems(R.array.hobby, flags, new DialogInterface.OnMultiChoiceClickListener(){ public void onClick(DialogInterface dialog, int which, boolean isChecked) { flags[which]=isChecked; String result = "您選擇了:"; for (int i = 0; i < flags.length; i++) { if(flags[i]){ result=result+items[i]+"、"; } } editText.setText(result.substring(0, result.length()-1)); } }); //添加一個確定按鈕 builder.setPositiveButton(" 確 定 ", new DialogInterface.OnClickListener(){ public void onClick(DialogInterface dialog, int which) { } }); //創(chuàng)建一個復選框對話框 dialog=builder.create(); break; } return dialog; } }
運行結果:
希望本文所述對大家的Android程序設計有所幫助。
相關文章
Android 自動化測試經驗分享 UiObejct.getFromParent()的使用方法
本篇文章對Android中UiObejct.getFromParent()的使用進行了詳細的分析介紹。需要的朋友參考下2013-05-05Android布局自定義Shap圓形ImageView可以單獨設置背景與圖片
這篇文章主要介紹了Android布局自定義Shap圓形ImageView可以單獨設置背景與圖片 的相關資料,需要的朋友可以參考下2016-01-01Android startActivityForResult實例詳解
這篇文章主要介紹了Android startActivityForResult實例詳解的相關資料,需要的朋友可以參考下2017-05-05自定義Toast工具類ToastUtil防止多次點擊時Toast不消失的方法
下面小編就為大家?guī)硪黄远xToast工具類ToastUtil防止多次點擊時Toast不消失的方法。小編覺得挺不錯的,現在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-04-04