首页 > 代码库 > Android之在Dialog中加入单选button【自己定义Dialog】
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】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。