Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 992|回复: 0

android dialog —— 单选列表对话框-  Android学习

[复制链接]

该用户从未签到

发表于 2011-10-24 14:33:49 | 显示全部楼层 |阅读模式
设置单选列表只需 AlertDialog.Builder里面的setSingleChoiceItems 来设置即可
实现步骤如下:
第一步:用来显示列表内容的
res/values/array.xml
<?xml version="1.0" encoding="utf-8"?>

<resources>

        <string-array name="hobby">

                <item>篮球</item>

                <item>足球</item>

                <item>排球</item>

        </string-array>

</resources>
复制代码
第二步:还是定义一个输入框和一个按钮
res/layout/single_choice_dialog_layout.xml
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout

  xmlns:android="http://schemas.android.com/apk/res/android"

  androidrientation="vertical"

  android:layout_width="fill_parent"

  android:layout_height="wrap_content">

  <EditText android:id="@+id/editText"

          android:layout_width="fill_parent"

          android:layout_height="wrap_content"

          android:text="这是一个单选列表对话框"

  />

  <Button android:id="@+id/button"

          android:layout_width="fill_parent"

          android:layout_height="wrap_content"

          android:text="显示单选列表对话框"

  />

</LinearLayout>
复制代码

第三步:
产生一个单选列表对话框,首先需要new 一个AlertDialog.Builder作为对话框内容的载体,然后通过setSingleChoiceItems将
builder与array.xml中的数据关联,需要通过DialogInterface.OnClickListener对列表单选单击事件进行处理,
为了保存单选列表项中的选中数据,需要单独写一个类,且类中需要加一个选中了哪一个列表项的属性which,
代码如下
src/com/dialog/activity/SingChoiceDialogActivity.java
package com.dialog.activity;



import android.app.Activity;

import android.app.AlertDialog;

import android.app.Dialog;

import android.app.AlertDialog.Builder;

import android.content.DialogInterface;

import android.os.Bundle;

import android.util.Log;

import android.view.View;

import android.widget.Button;

import android.widget.EditText;



public class SingChoiceDialogActivity extends Activity {

        

        private final int SING_CHOICE_DIALOG = 1;

    @Override

    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.single_choice_dialog_layout);

        

        Button button = (Button) findViewById(R.id.button);

        View.OnClickListener listener = new View.OnClickListener() {

                        

                        @Override

                        public void onClick(View view) {

                                showDialog(SING_CHOICE_DIALOG);

                        }

                };

                button.setOnClickListener(listener);

    }

   

    @Override

    protected Dialog onCreateDialog(int id) {

            Dialog dialog = null;

            switch(id) {

                    case SING_CHOICE_DIALOG:

                            Builder builder = new AlertDialog.Builder(this);

                            builder.setIcon(R.drawable.basketball);

                            builder.setTitle("体育爱好");

                            final ChoiceOnClickListener choiceListener =

                                    new ChoiceOnClickListener();

                            builder.setSingleChoiceItems(R.array.hobby, 0, choiceListener);

                           

                            DialogInterface.OnClickListener btnListener =

                                    new DialogInterface.OnClickListener() {

                                                @Override

                                                public void onClick(DialogInterface dialogInterface, int which) {

                                                        

                                                        EditText editText = (EditText) findViewById(R.id.editText);

                                                        int choiceWhich = choiceListener.getWhich();

                                                        String hobbyStr =

                                                                getResources().getStringArray(R.array.hobby)[choiceWhich];

                                                        editText.setText("你选择了  " + hobbyStr);

                                                }

                                        };

                            builder.setPositiveButton("确定", btnListener);

                            dialog = builder.create();

                            break;

            }

            return dialog;

    }

   

    private class ChoiceOnClickListener implements DialogInterface.OnClickListener {



            private int which = 0;

                @Override

                public void onClick(DialogInterface dialogInterface, int which) {

                        this.which = which;

                }

            

                public int getWhich() {

                        return which;

                }

    }

}
复制代码

效果图:

SingleChoiceDialogDemo.rar (151.48 KB, 下载次数: 2)
回复

使用道具 举报

该用户从未签到

发表于 2011-10-24 14:33:53 | 显示全部楼层

Re:android

回帖从我做起
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

GMT+8, 2025-1-12 00:00 , Processed in 0.321810 second(s), 36 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表