Android实现弹出列表、单选、多选框
更新时间:2020年07月27日 09:42:44 作者:zst1303939801
这篇文章主要为大家详细介绍了Android实现弹出列表、单选、多选框,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
脚本之家 / 编程助手:解决程序员“几乎”所有问题!
脚本之家官方知识库 → 点击立即使用
本文实例为大家分享了Android实现弹出列表、单选、多选框的具体代码,供大家参考,具体内容如下
效果图如下:
需要建一个menu
xml布局如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | <? xml version = "1.0" encoding = "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" xmlns:app = "http://schemas.android.com/apk/res-auto" xmlns:tools = "http://schemas.android.com/tools" android:layout_width = "match_parent" android:layout_height = "match_parent" tools:context = "com.example.lyp1020k.lv.MainActivity" android:orientation = "vertical" > < Button android:id = "@+id/button1" android:text = "列表框" android:onClick = "showList" android:layout_width = "match_parent" android:layout_height = "wrap_content" /> < Button android:id = "@+id/button2" android:text = "单选列表" android:onClick = "showSingleAlertDialog" android:layout_width = "match_parent" android:layout_height = "wrap_content" /> < Button android:id = "@+id/button3" android:text = "多选按钮" android:onClick = "showMutilAlertDialog" android:layout_width = "match_parent" android:layout_height = "wrap_content" /> </ LinearLayout > |
Java代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 | import android.content.DialogInterface; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.Menu; import android.view.View; import android.widget.Button; import android.widget.Toast; public class MainActivity extends AppCompatActivity { private AlertDialog alertDialog1; //信息框 private AlertDialog alertDialog2; //单选框 private AlertDialog alertDialog3; //多选框 private Button button1; private Button button2; private Button button3; @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_main); init(); } public void init(){ button1 = (Button) findViewById(R.id.button1); button2 = (Button) findViewById(R.id.button2); button3 = (Button) findViewById(R.id.button3); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.mian, menu); return true ; } public void showList(View view){ final String[] items = { "列表1" , "列表2" , "列表3" , "列表4" }; AlertDialog.Builder alertBuilder = new AlertDialog.Builder( this ); alertBuilder.setTitle( "这是列表框" ); alertBuilder.setItems(items, new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { Toast.makeText(MainActivity. this , items[i], Toast.LENGTH_SHORT).show(); alertDialog1.dismiss(); } }); alertDialog1 = alertBuilder.create(); alertDialog1.show(); } public void showSingleAlertDialog(View view){ final String[] items = { "单选1" , "单选2" , "单选3" , "单选4" }; AlertDialog.Builder alertBuilder = new AlertDialog.Builder( this ); alertBuilder.setTitle( "这是单选框" ); alertBuilder.setSingleChoiceItems(items, 0 , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { Toast.makeText(MainActivity. this , items[i], Toast.LENGTH_SHORT).show(); } }); alertBuilder.setPositiveButton( "确定" , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { alertDialog2.dismiss(); } }); alertBuilder.setNegativeButton( "取消" , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { alertDialog2.dismiss(); } }); alertDialog2 = alertBuilder.create(); alertDialog2.show(); } public void showMutilAlertDialog(View view){ final String[] items = { "多选1" , "多选2" , "多选3" , "多选4" }; AlertDialog.Builder alertBuilder = new AlertDialog.Builder( this ); alertBuilder.setTitle( "这是多选框" ); /** *第一个参数:弹出框的消息集合,一般为字符串集合 * 第二个参数:默认被选中的,布尔类数组 * 第三个参数:勾选事件监听 */ alertBuilder.setMultiChoiceItems(items, null , new DialogInterface.OnMultiChoiceClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i, boolean isChecked) { if (isChecked){ Toast.makeText(MainActivity. this , "选择" + items[i], Toast.LENGTH_SHORT).show(); } else { Toast.makeText(MainActivity. this , "取消选择" + items[i], Toast.LENGTH_SHORT).show(); } } }); alertBuilder.setPositiveButton( "确定" , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { alertDialog3.dismiss(); } }); alertBuilder.setNegativeButton( "取消" , new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialogInterface, int i) { alertDialog3.dismiss(); } }); alertDialog3 = alertBuilder.create(); alertDialog3.show(); } } |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Android ExpandableListView单选以及多选实现代码
- Android ListView实现单选及多选等功能示例
- Android自定义单选多选下拉列表的实例代码
- Android Recyclerview实现多选,单选,全选,反选,批量删除的功能
- Android使用AlertDialog实现的信息列表单选、多选对话框功能
- Android中ListView + CheckBox实现单选、多选效果
- Android实现单选与多选对话框的代码
- Android ListView构建支持单选和多选的投票项目
- Android中创建对话框(确定取消对话框、单选对话框、多选对话框)实例代码
- Android单选多选按钮的使用方法
微信公众号搜索 “ 脚本之家 ” ,选择关注
程序猿的那些事、送书等活动等着你
相关文章
Android 自定义gradle property详解及实例代码
这篇文章主要介绍了Android 自定义gradle property详解及实例代码的相关资料,需要的朋友可以参考下2017-02-02
最新评论