Android之在Dialog中加入单选button自己定义Dialog
Posted ljbguanli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android之在Dialog中加入单选button自己定义Dialog相关的知识,希望对你有一定的参考价值。
效果图:
XML 文件:
创建一个点击button并加入点击方法:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity" > <Button android:id="@+id/button1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:onClick="showAlertDialog" android:text="alertDialog" /> </LinearLayout>
MainActivity:实现点击button的监听方法
public void showAlertDialog(View view){ /* * 设置单选items * */ AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);//内部使用构建者的设计模式 final String[] items = {"苹果","橘子","香蕉"}; builder.setTitle("Dialog"); builder.setSingleChoiceItems(items, -1,new OnClickListener() {//第二个參数是设置默认选中哪一项-1代表默认都不选 @Override public void onClick(DialogInterface dialog, int which) { // TODO Auto-generated method stub Toast.makeText(MainActivity.this, items[which], 0).show(); } }); builder.setCancelable(false);//设置dialog仅仅能通过点击Dialog上的button退出,不能通过回退button退出关闭Dialog builder.create().show();//创建对象 }
以上是关于Android之在Dialog中加入单选button自己定义Dialog的主要内容,如果未能解决你的问题,请参考以下文章
Android Dialog 普通对话框 单选对话框 多选对话框