91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何實現彈出列表、單選、多選框

發布時間:2021-04-16 14:33:31 來源:億速云 閱讀:869 作者:小新 欄目:移動開發

這篇文章主要介紹Android如何實現彈出列表、單選、多選框,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

具體內容如下

效果圖如下:

Android如何實現彈出列表、單選、多選框Android如何實現彈出列表、單選、多選框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如何實現彈出列表、單選、多選框”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

苏州市| 常山县| 白山市| 临潭县| 林甸县| 山东| 文山县| 武汉市| 宿松县| 铁岭市| 海原县| 电白县| 休宁县| 阳山县| 西丰县| 清镇市| 佛学| 洞头县| 虞城县| 大化| 丰镇市| 安徽省| 池州市| 进贤县| 桓台县| 金山区| 象山县| 怀宁县| 杭锦旗| 府谷县| 巴南区| 正安县| 即墨市| 西城区| 淮阳县| 翁牛特旗| 镇安县| 平阳县| 合阳县| 兴化市| 北京市|