手机
当前位置:查字典教程网 >编程开发 >安卓软件开发 >Android列表对话框用法实例分析
Android列表对话框用法实例分析
摘要:本文实例讲述了Android列表对话框用法。分享给大家供大家参考。具体如下:main.xml布局文件:array.xml数组:游泳打篮球登山...

本文实例讲述了Android列表对话框用法。分享给大家供大家参考。具体如下:

main.xml布局文件:

<"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数组:

<"1.0" encoding="utf-8"?> <resources> <string-array name="hobby"> <item>游泳</item> <item>打篮球</item> <item>登山</item> </string-array> </resources>

AlertDialog类:

package com.ljq.dialog; import android.app.Activity; import android.app.Dialog; import android.app.AlertDialog.Builder; import android.content.DialogInterface; import android.content.DialogInterface.OnClickListener; 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; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); 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); } }); } /** * 创建列表对话框 */ @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("列表对话框"); //添加按钮,android.content.DialogInterface.OnClickListener.OnClickListener builder.setItems(R.array.hobby, new OnClickListener(){ public void onClick(DialogInterface dialog, int which) { String hoddy=getResources().getStringArray(R.array.hobby)[which]; editText.setText("您选择了: "+hoddy); } }); //创建一个列表对话框 dialog=builder.create(); break; } return dialog; } }

运行结果:

Android列表对话框用法实例分析1

希望本文所述对大家的Android程序设计有所帮助。

【Android列表对话框用法实例分析】相关文章:

android 仿微信聊天气泡效果实现思路

android动态壁纸调用的简单实例

Android中打电话的数据流程分析

Android下拉列表(Spinner)效果

Android控件系列之ImageView使用方法

Android 异步加载图片的实例代码

Android屏蔽后退键的小例子

Android列表实现(2)_游标列表案例讲解

Android内存调试命令

Android 解析JSON对象及实例说明

精品推荐
分类导航