亦余心之所善兮,虽九死其犹未悔。这篇文章主要讲述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 推断程序在手机中是否是活动状态或者正在执行状态
- 在内网使用Gradle构建Android Studio项目
- Android LBS 学习总结
- 小米手机不能直接运行Android Studio程序
- Android Gradle 自定义任务执行命令行
- Android组件——使用DrawerLayout仿网易新闻v4.4侧滑菜单
- 闲谈 Android 中的 @ 和 (符号的引用区别)
- Cocos2d-x v3.0正式版尝鲜体验 Android平台移植
- OpenCV4Android释疑:透析Android以JNI调OpenCV的三种方式(让OpenCVManager永不困扰)