Android实现弹出列表、单选、多选框

 更新时间:2020年07月27日 09:42:44   作者:zst1303939801  
这篇文章主要为大家详细介绍了Android实现弹出列表、单选、多选框,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了Android实现弹出列表、单选、多选框的具体代码,供大家参考,具体内容如下

效果图如下:

需要建一个menu

xml布局如下:

<?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代码如下:

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非RxJava环境下使用Handler实现预加载

    android非RxJava环境下使用Handler实现预加载

    这篇文章主要介绍了android非RxJava环境下使用Handler实现预加载的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-01-01
  • Android中超大图片无法显示的问题解决

    Android中超大图片无法显示的问题解决

    最近在工作中发现一个问题,在做图片浏览的时候发现超大图图片无法显示,无奈只能上网找解决方法,后来通过测试找到了解决的方法,下面这篇文章就主要介绍了Android中超大图无法显示的问题解决方法,需要的朋友可以参考借鉴。
    2017-01-01
  • PowerManagerService之亮屏流程示例分析

    PowerManagerService之亮屏流程示例分析

    这篇文章主要为大家介绍了PowerManagerService之亮屏流程示例分析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-10-10
  • Android 用HttpURLConnection访问网络的方法

    Android 用HttpURLConnection访问网络的方法

    下面小编就为大家分享一篇Android 用HttpURLConnection访问网络的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • Android Jetpack组件Lifecycle源码解析

    Android Jetpack组件Lifecycle源码解析

    这篇文章主要为大家介绍了Android Jetpack组件Lifecycle源码解析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-03-03
  • Android项目中使用HTTPS配置的步骤详解

    Android项目中使用HTTPS配置的步骤详解

    这篇文章主要给大家介绍了关于Android项目中使用HTTPS配置步骤的相关资料,文中介绍的非常详细,对大家具有一定的参考学习价值,需要的朋友们下面来一起看看吧。
    2017-06-06
  • 上传Android项目至github的解析

    上传Android项目至github的解析

    本文主要讲解了如何将自己的android项目上传至github,相信大家平时在开发过程中为了避免重复造轮子会经常逛一下github查看有没有与需求类似的开源项目,那么github上面的开源项目是如何上传至github上的呢?
    2018-05-05
  • Android 实现背景图和状态栏融合方法

    Android 实现背景图和状态栏融合方法

    下面小编就为大家分享一篇Android 实现背景图和状态栏融合方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2018-01-01
  • Android 开发之BottomBar+ViewPager+Fragment实现炫酷的底部导航效果

    Android 开发之BottomBar+ViewPager+Fragment实现炫酷的底部导航效果

    BottomBar是Github上的一个开源框架,本文给大家介绍Android 开发之BottomBar+ViewPager+Fragment实现炫酷的底部导航效果,非常不错,具有参考借鉴价值,感兴趣的朋友一起看下吧
    2016-05-05
  • Android使用HttpURLConnection实现网络访问流程

    Android使用HttpURLConnection实现网络访问流程

    早些时候其实我们都习惯性使用HttpClient,但是后来Android6.0之后不再支持HttpClient,需要添加Apache的jar才行,所以,就有很多开发者放弃使用HttpClient了,HttpURLConnection毕竟是标准Java接口(java.net) ,适配性还是很强的
    2022-12-12

最新评论