Android之復選框?qū)υ捒蛴梅▽嵗治?/h1>
更新時間:2015年09月15日 11:18:19 作者:Ruthless
這篇文章主要介紹了Android之復選框?qū)υ捒蛴梅?涉及Android頁面布局、對話框類等相關(guān)使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了Android之復選框?qū)υ捒蛴梅ā7窒斫o大家供大家參考。具體如下:
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="顯示復選框?qū)υ捒?
android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>
array.xml數(shù)組
<?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)建復選框?qū)υ捒?
*/
@Override
protected Dialog onCreateDialog(int id) {
Dialog dialog=null;
switch (id) {
case DIALOG:
Builder builder=new android.app.AlertDialog.Builder(this);
//設(shè)置對話框的圖標
builder.setIcon(R.drawable.header);
//設(shè)置對話框的標題
builder.setTitle("復選框?qū)υ捒?);
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)建一個復選框?qū)υ捒?
dialog=builder.create();
break;
}
return dialog;
}
}
運行結(jié)果:

希望本文所述對大家的Android程序設(shè)計有所幫助。
相關(guān)文章
-
Android 自動化測試經(jīng)驗分享 UiObejct.getFromParent()的使用方法
本篇文章對Android中UiObejct.getFromParent()的使用進行了詳細的分析介紹。需要的朋友參考下 2013-05-05
-
Android中Glide實現(xiàn)超簡單的圖片下載功能
本篇文章主要介紹了Android中Glide實現(xiàn)超簡單的圖片下載功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下。
2017-03-03
-
Android布局自定義Shap圓形ImageView可以單獨設(shè)置背景與圖片
這篇文章主要介紹了Android布局自定義Shap圓形ImageView可以單獨設(shè)置背景與圖片 的相關(guān)資料,需要的朋友可以參考下 2016-01-01
-
Android startActivityForResult實例詳解
這篇文章主要介紹了Android startActivityForResult實例詳解的相關(guān)資料,需要的朋友可以參考下 2017-05-05
-
自定義Toast工具類ToastUtil防止多次點擊時Toast不消失的方法
下面小編就為大家?guī)硪黄远xToast工具類ToastUtil防止多次點擊時Toast不消失的方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧 2017-04-04
最新評論
本文實例講述了Android之復選框?qū)υ捒蛴梅ā7窒斫o大家供大家參考。具體如下:
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="顯示復選框?qū)υ捒? android:id="@+id/button" android:layout_width="fill_parent" android:layout_height="wrap_content" /> </LinearLayout>
array.xml數(shù)組
<?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)建復選框?qū)υ捒?
*/
@Override
protected Dialog onCreateDialog(int id) {
Dialog dialog=null;
switch (id) {
case DIALOG:
Builder builder=new android.app.AlertDialog.Builder(this);
//設(shè)置對話框的圖標
builder.setIcon(R.drawable.header);
//設(shè)置對話框的標題
builder.setTitle("復選框?qū)υ捒?);
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)建一個復選框?qū)υ捒?
dialog=builder.create();
break;
}
return dialog;
}
}
運行結(jié)果:

希望本文所述對大家的Android程序設(shè)計有所幫助。
相關(guān)文章
Android 自動化測試經(jīng)驗分享 UiObejct.getFromParent()的使用方法
本篇文章對Android中UiObejct.getFromParent()的使用進行了詳細的分析介紹。需要的朋友參考下2013-05-05
Android中Glide實現(xiàn)超簡單的圖片下載功能
本篇文章主要介紹了Android中Glide實現(xiàn)超簡單的圖片下載功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下。2017-03-03
Android布局自定義Shap圓形ImageView可以單獨設(shè)置背景與圖片
這篇文章主要介紹了Android布局自定義Shap圓形ImageView可以單獨設(shè)置背景與圖片 的相關(guān)資料,需要的朋友可以參考下2016-01-01
Android startActivityForResult實例詳解
這篇文章主要介紹了Android startActivityForResult實例詳解的相關(guān)資料,需要的朋友可以參考下2017-05-05
自定義Toast工具類ToastUtil防止多次點擊時Toast不消失的方法
下面小編就為大家?guī)硪黄远xToast工具類ToastUtil防止多次點擊時Toast不消失的方法。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-04-04

