android 单选按钮对话框,Android单选按钮对话框用法实例分析

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

main.xml布局文件

android:orientation="vertical" android:layout_width="fill_parent"

android:layout_height="fill_parent">

android:id="@+id/editText"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:editable="false"

android:cursorVisible="false" />

android:id="@+id/button"

android:layout_width="fill_parent"

android:layout_height="wrap_content" />

array.xml数组

游泳

打篮球

登山

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("单选按钮对话框");

//0: 默认第一个单选按钮被选中

builder.setSingleChoiceItems(R.array.hobby, 0, new OnClickListener(){

public void onClick(DialogInterface dialog, int which) {

String hoddy=getResources().getStringArray(R.array.hobby)[which];

editText.setText("您选择了: "+hoddy);

}

});

//添加一个确定按钮

builder.setPositiveButton(" 确 定 ", new DialogInterface.OnClickListener(){

public void onClick(DialogInterface dialog, int which) {

}

});

//创建一个单选按钮对话框

dialog=builder.create();

break;

}

return dialog;

}

}

运行结果:

9d4fed427977a1c9936e5aa04b638588.png

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

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值