AndroidでAlertダイアログに複数選択できるリストを表示します。
【手順1】
1.「Androidプロジェクトの作成・実行方法(バージョン別一覧)」のAndroidプロジェクトの作成手順で、「AndroidSample04-005-AlertDialogMultiChoiceList」といプロジェクトを作成。
※プロジェクトの設定は以下の通り。
※他の項目は任意。
項目名 | 項目に設定する値 |
アプリケーション名(Application Name) | com.example.androidsample04_005 |
プロジェクト名(Project Name) | AndroidSample04-005-AlertDialogMultiChoiceList |
パッケージ名(Package Name) | com.example.androidsample04_005 |
Build SDK | API 8 |
Minimum Required SDK | API 8 |
【手順2】
1.「AndroidManifest.xml」は以下の通り。
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.androidsample04_005" android:versionCode="1" android:versionName="1.0" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" /> <application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme" > <activity android:name="com.example.androidsample04_005.MainActivity" android:label="@string/title_activity_main" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest>2.「Ctrl+Shift+F」を押し、コードをフォーマッティング。
3.「Ctrl+S」を押し、ファイルを保存。
【手順3】
1.「res/layout/activity_main.xml」は以下の通り。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="onClickButton" android:text="ボタン" /> </LinearLayout>2.「Ctrl+Shift+F」を押し、コードをフォーマッティング。
3.「Ctrl+S」を押し、ファイルを保存。
【手順4】
1.「src/com/example/androidsample04_005/MainActivity.java」は以下の通り。
package com.example.androidsample04_005; import android.app.Activity; import android.app.AlertDialog; import android.content.DialogInterface; import android.os.Bundle; import android.view.View; import android.widget.Toast; public class MainActivity extends Activity { private static final String[] WORDS = { "AAA", "BBB", "CCC", "DDD", "EEE", "FFF", "GGG" }; private boolean[] selectArray = new boolean[WORDS.length]; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void onClickButton(View view) { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setMultiChoiceItems(WORDS, selectArray, new DialogInterface.OnMultiChoiceClickListener() { public void onClick(DialogInterface dialog, int which, boolean isChecked) { selectArray[which] = isChecked; } }); builder.setPositiveButton("選択", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.dismiss(); String message = getSelectedMessage(); Toast.makeText(MainActivity.this, message, Toast.LENGTH_SHORT).show(); } }); builder.setNegativeButton("キャンセル", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { dialog.dismiss(); } }); builder.create(); builder.show(); } private String getSelectedMessage() { StringBuilder message = new StringBuilder(); for (int i = 0; i < WORDS.length; i++) { if (selectArray[i]) { message.append(WORDS[i]); message.append(","); } } message.append("が選択されました。"); return message.toString(); } }2.「Ctrl+Shift+F」を押し、コードをフォーマッティング。
3.「Ctrl+S」を押し、ファイルを保存。
【手順5】
1.「Androidプロジェクトの作成・実行方法(バージョン別一覧)」のAndroidプロジェクトの実行手順で、実行。
【手順6】
1.以下の様に表示されれば成功です。
以上です。
0 件のコメント:
コメントを投稿
注: コメントを投稿できるのは、このブログのメンバーだけです。