安卓AlertDialog四種對話框的最科學編寫用法

来源:https://www.cnblogs.com/geeksongs/archive/2019/11/24/11922012.html
-Advertisement-
Play Games

首先我們上圖: xml的代碼如下,用於編寫按鈕: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layou ...


首先我們上圖:

 

 xml的代碼如下,用於編寫按鈕:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/background"
xmlns:widget="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
    <Button
        android:id="@+id/button_1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="簡單的dialog"
        />
    <Button
        android:id="@+id/button_2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="列表的dialog"
        />
    <Button
        android:id="@+id/button_3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="單選的dialog"
        />
    <Button
        android:id="@+id/button_4"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="多選的dialog"
        />

</LinearLayout>

Java代碼如下,用於實現邏輯:

import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AlertDialog;
import androidx.appcompat.app.AppCompatActivity;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.Toast;



public class MainActivity extends AppCompatActivity{
    int index;
    String [] item = {"Android","IOS","Spark","Hadoop","Web"};
    boolean[] bools = {false,false,false,false,false};
    // 設置boolean數組所有的選項設置預設沒選
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.hide();
        }
        Button button=(Button)findViewById(R.id.button_1);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
                builder.setIcon(R.drawable.girl);

                builder.setTitle("標題欄");
                builder.setMessage("對話框內容,可自行設置");
                builder.setPositiveButton("確定",new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        Toast.makeText(MainActivity.this, "點擊了確定", Toast.LENGTH_SHORT).show();
                    }
                });
                builder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        Toast.makeText(MainActivity.this, "點擊了取消", Toast.LENGTH_SHORT).show();
                    }
                });
                builder.setNeutralButton("好的", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialogInterface, int i) {
                        Toast.makeText(MainActivity.this, "點擊了“好的”", Toast.LENGTH_SHORT).show();
                    }
                });
                AlertDialog alertDialog = builder.create();
                alertDialog.show();
            }
        });

        Button button2=(Button)findViewById(R.id.button_2);
        button2.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
                builder.setTitle("請選擇一個技術分支");
                builder.setItems(item, new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        Toast.makeText(MainActivity.this, "選擇了"+item[which], Toast.LENGTH_SHORT).show();
                    }
                });
                // 取消可以不添加
                //builder.setNegativeButton("取消",null);
                AlertDialog alertDialog = builder.create();
                alertDialog.show();
            }
        });
        Button button3=(Button)findViewById(R.id.button_3);

        button3.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {

                AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
                builder.setTitle("請選擇技術分支:");
                builder.setSingleChoiceItems(item, index, new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        index = which;
                    }
                });
                builder.setPositiveButton("確定", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        Toast.makeText(MainActivity.this, "選擇了"+item[index], Toast.LENGTH_SHORT).show();
                    }
                });
                builder.setNegativeButton("取消",null);
                AlertDialog alertDialog = builder.create();
                alertDialog.show();
            }
        });
        Button button4=(Button)findViewById(R.id.button_4);
        button4.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
                builder.setTitle("請選擇技術分支:");
                builder.setMultiChoiceItems(item, bools, new DialogInterface.OnMultiChoiceClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which, boolean isChecked) {
                        bools[which] = isChecked;
                    }
                });
                builder.setPositiveButton("確定", new DialogInterface.OnClickListener() {
                    @Override
                    public void onClick(DialogInterface dialog, int which) {
                        StringBuffer sb = new StringBuffer();
                        for (int i = 0; i < item.length; i++) {
                            if (bools[i]) {
                                sb.append(item[i] + " ");
                            }
                        }
                        Toast.makeText(MainActivity.this, "選擇了" + sb.toString(), Toast.LENGTH_SHORT).show();
                    }
                });
                builder.setNegativeButton("取消",null);
                AlertDialog alertDialog = builder.create();
                alertDialog.show();
            }
        });
    }







}

得解也

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 由於PHP5.3 的改進,原有的IIS 通過isapi 方式解析PHP腳本已經不被支持,PHP從5.3.0 以後的版本開始使用微軟的 fastcgi 模式,這是一個更先進的方式,運行速度更快,更穩定。本文介紹在IIS上以FastCGI模式運行PHP。我們以 Windows 2003 + IIS 6. ...
  • 本文主要是介紹在centos上搭建mysql的主從伺服器。如果沒有搭建過的,可以查看我以前的博客,裡面有詳細的安裝centos和在centos上安裝mysql的說明。 一.安裝從虛擬機: 1.右鍵—>管理—>克隆 2.選擇完整克隆 3.修改虛擬機的位置,預設在C盤下。 4.當克隆完成後,就有這樣兩台 ...
  • SQL註入基本原理 WEB技術發展日新月異,但是徒手拼SQL的傳統手藝還是受相當多的開發者親睞。畢竟相比於再去學習一套複雜的 "ORM" 規則,手拼更說方便,直觀。通常自己拼SQL的人,應該是有聽說過 SQL註入 很危險,但是總是心想:我的SQL語句這麼簡單,不可能被註入的。 花5分鐘看完這個完整的 ...
  • 參考《PostgreSQL實戰》 3.1.2 數字類型操作符和數學函數 PostgreSQL 支持數字類型操作符和豐富的數學函數 例如支持 加、減、乘、除、模取取餘 操作符 SELECT 1+2, 2 3, 4/2, 8%3; 按模取餘 SELECT mod(8,3); 結果:2 四捨五入 函數: ...
  • 1. 資料庫操作 看完前面的文章,大家應該把環境搭建好了,下麵我們就開始學習MongoDB的一些基本操作了。 首先我們要瞭解的一些要點: MongoDB將數據存儲為一個文檔,數據結構由鍵值對(key=>value)組成 MongoDB文檔類似於JSON對象,欄位值可以包含其他文檔、數組、文檔數組 其 ...
  • 1. 在Windows環境安裝 1.1 MongoDB下載 要在Windows上安裝MongoDB,首先打開MongoDB官網:https://www.mongodb.com/download-center 下載最新版本的MongoDB。確保根據您的Windows版本獲得正確版本的MongoDB。要 ...
  • 1. NoSQL簡介 1.1 什麼是NoSQL NoSQL(NoSQL= Not Only SQL),意即“不僅僅是SQL",是一項全新的資料庫理念,泛指非關係型的資料庫。 1.2 為什麼需要NoSQL 隨著互聯網web2.0網站的興起,非關係型的資料庫現在成了一個極其熱門的新領域,非關係資料庫產品 ...
  • Qt for Android Qt for Android enables you to run Qt 5 applications Android devices. All Qt modules (essential and add-on) are supported except Qt WebE ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...