欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實(shí)現(xiàn)彈出列表、單選、多選框

 更新時間:2020年07月27日 09:42:44   作者:zst1303939801  
這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)彈出列表、單選、多選框,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android實(shí)現(xiàn)彈出列表、單選、多選框的具體代碼,供大家參考,具體內(nèi)容如下

效果圖如下:

需要建一個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("這是多選框");
 /**
 *第一個參數(shù):彈出框的消息集合,一般為字符串集合
 * 第二個參數(shù):默認(rèn)被選中的,布爾類數(shù)組
 * 第三個參數(shù):勾選事件監(jiān)聽
 */
 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();
 }
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。 

相關(guān)文章

  • 詳解Android TableLayout表格布局

    詳解Android TableLayout表格布局

    表格布局的標(biāo)簽是TableLayout,TableLayout繼承了LinearLayout。所以它依然是一個線性布局,通過本文給大家介紹Android TableLayout表格布局,感興趣的朋友一起學(xué)習(xí)吧
    2016-02-02
  • Android中的圖片優(yōu)化完全指南

    Android中的圖片優(yōu)化完全指南

    這篇文章主要給大家介紹了關(guān)于Android中圖片優(yōu)化的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2018-11-11
  • Android 如何在私有空間創(chuàng)建文件

    Android 如何在私有空間創(chuàng)建文件

    在Android應(yīng)用程序中,我們經(jīng)常需要在私有空間中創(chuàng)建文件來存儲應(yīng)用數(shù)據(jù),例如用戶配置文件、日志文件等,本文將介紹如何在Android應(yīng)用中使用Java代碼創(chuàng)建文件并將其保存在私有空間中,感興趣的朋友跟隨小編一起看看吧
    2024-06-06
  • Android 自定義gradle property詳解及實(shí)例代碼

    Android 自定義gradle property詳解及實(shí)例代碼

    這篇文章主要介紹了Android 自定義gradle property詳解及實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下
    2017-02-02
  • Android利用HelloChart繪制曲線

    Android利用HelloChart繪制曲線

    這篇文章主要為大家詳細(xì)介紹了Android利用HelloChart繪制曲線,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2022-02-02
  • Android實(shí)現(xiàn)加法計(jì)算器

    Android實(shí)現(xiàn)加法計(jì)算器

    這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)加法計(jì)算器,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2020-03-03
  • Android打開手機(jī)相冊獲取圖片路徑

    Android打開手機(jī)相冊獲取圖片路徑

    這篇文章主要為大家詳細(xì)介紹了Android打開手機(jī)相冊獲取圖片路徑,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2019-04-04
  • android SDk中常用的java包介紹

    android SDk中常用的java包介紹

    在android的應(yīng)用程序開發(fā)中,通常使用的是java語言,除了需要熟悉java語言的基礎(chǔ)知識之外,還需要了解android提供的擴(kuò)展的java功能。android SDK中API提供一些擴(kuò)展的java 類庫,類庫分為若干個包,每個包中包含若干個類
    2014-05-05
  • Android開發(fā)實(shí)現(xiàn)的標(biāo)準(zhǔn)體重計(jì)算器功能示例

    Android開發(fā)實(shí)現(xiàn)的標(biāo)準(zhǔn)體重計(jì)算器功能示例

    這篇文章主要介紹了Android開發(fā)實(shí)現(xiàn)的標(biāo)準(zhǔn)體重計(jì)算器功能,結(jié)合實(shí)例形式分析了Android體重計(jì)算器的界面布局與功能實(shí)現(xiàn)相關(guān)操作技巧,需要的朋友可以參考下
    2017-12-12
  • Android三種實(shí)現(xiàn)定時器的方法

    Android三種實(shí)現(xiàn)定時器的方法

    本文給大家分享了3種Android實(shí)現(xiàn)定時器的方法的示例,,需要的朋友可以參考下
    2015-02-02

最新評論