Android--自定義彈出框-自定義dialog

来源:http://www.cnblogs.com/819158327fan/archive/2016/04/28/5442236.html
-Advertisement-
Play Games

項目要用到彈出框,還要和蘋果的樣式一樣(Android真是沒地位),所以就自己定義了一個,不是很像(主要是沒圖),但是也還可以。 廢話不多說了,直接上代碼 1、先看佈局文件 2、集成dialog重寫了一下 3、使用起來和系統的用法一樣 ...


項目要用到彈出框,還要和蘋果的樣式一樣(Android真是沒地位),所以就自己定義了一個,不是很像(主要是沒圖),但是也還可以。

廢話不多說了,直接上代碼

1、先看佈局文件

<?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:padding="20dp"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:background="@drawable/custom_dialog_background"
        android:orientation="vertical">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_horizontal"
            android:orientation="vertical">

            <TextView
                android:id="@+id/tv_title_custom_dialog"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="20dp"
                android:text="提醒"
                android:textColor="#000"
                android:textSize="18dp" />

            <TextView
                android:id="@+id/tv_message_custom_dialog"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="10dp"
                android:text="您確定要取消訂單嗎" />
        </LinearLayout>

        <View
            android:layout_width="match_parent"
            android:layout_height="0.5dp"
            android:layout_marginTop="20dp"
            android:background="#dfdfdf" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <Button
                android:id="@+id/btn_negative_custom_dialog"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@android:color/transparent"
                android:text="取消"
                android:textColor="@android:color/holo_blue_dark" />

            <View
                android:layout_width="0.5dp"
                android:layout_height="match_parent"
                android:background="#dfdfdf" />

            <Button
                android:id="@+id/btn_positive_custom_dialog"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:background="@android:color/transparent"
                android:text="確定"
                android:textColor="@android:color/holo_blue_dark" />
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

2、集成dialog重寫了一下

package newair.com.storelibrary.ui.custom.widget;

import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.LinearLayout;
import android.widget.TextView;

import newair.com.storelibrary.R;

/**
 * Created by ouhimehime on 16/4/22.
 * ---------自定義提示框-----------
 */
public class CustomDialog extends Dialog {


    public CustomDialog(Context context) {
        super(context);
    }

    public CustomDialog(Context context, int themeResId) {
        super(context, themeResId);
    }

    protected CustomDialog(Context context, boolean cancelable, OnCancelListener cancelListener) {
        super(context, cancelable, cancelListener);
    }

    public static class Builder {
        private Context context;
        private String title;  //標題
        private String message;//提示消息
        private String negative_text;//消極的
        private String positive_text;//積極的
        private DialogInterface.OnClickListener negativeListener;//消極的監聽
        private DialogInterface.OnClickListener positiveListener;//積極的監聽

        public Builder(Context context) {
            this.context = context;
        }

        public Builder setTitle(String title) {
            if (title == null) {
                this.title = "提醒";
            }
            this.title = title;
            return this;
        }

        public Builder setMessage(String message) {
            if (message == null) {
                this.message = "您沒有填寫提示信息哦";
            }
            this.message = message;
            return this;
        }

        public Builder setNegativeButton(String negative_text, DialogInterface.OnClickListener negativeListener) {
            if (negative_text == null) {
                this.negative_text = "取消";
            }
            this.negative_text = negative_text;
            this.negativeListener = negativeListener;

            return this;
        }

        public Builder setPositionButton(String positive_text, DialogInterface.OnClickListener positiveListener) {
            if (positive_text == null) {
                this.positive_text = "確定";
            }
            this.positive_text = positive_text;
            this.positiveListener = positiveListener;

            return this;
        }

        private TextView tv_title_custom_dialog;  //標題
        private TextView tv_message_custom_dialog;//提示信息
        private Button btn_negative_custom_dialog;//消極
        private Button btn_positive_custom_dialog;//積極


        public CustomDialog create() {
            final CustomDialog dialog = new CustomDialog(context);
            View view = LayoutInflater.from(context).inflate(R.layout.dialog_custom_style_layout, null);
            dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);//加上這一句,取消原來的標題欄,沒加這句之前,發現在三星的手機上會有一條藍色的線
//            dialog.addContentView(view, new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
            dialog.setContentView(view, new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT));
            tv_title_custom_dialog = (TextView) view.findViewById(R.id.tv_title_custom_dialog);
            tv_message_custom_dialog = (TextView) view.findViewById(R.id.tv_message_custom_dialog);
            btn_negative_custom_dialog = (Button) view.findViewById(R.id.btn_negative_custom_dialog);
            btn_positive_custom_dialog = (Button) view.findViewById(R.id.btn_positive_custom_dialog);
            tv_title_custom_dialog.setText(title);
            tv_message_custom_dialog.setText(message);
            btn_negative_custom_dialog.setText(negative_text);
            btn_positive_custom_dialog.setText(positive_text);
            dialog.getWindow().setBackgroundDrawable(new ColorDrawable(Color.TRANSPARENT));
            btn_negative_custom_dialog.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    negativeListener.onClick(dialog, Dialog.BUTTON_NEGATIVE);
                }
            });
            btn_positive_custom_dialog.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    positiveListener.onClick(dialog, Dialog.BUTTON_POSITIVE);
                }
            });
            return dialog;
        }
    }
}

3、使用起來和系統的用法一樣

CustomDialog.Builder builder = new CustomDialog.Builder(this);
                builder.setTitle("購物提醒")
                        .setMessage("我是提示信息,大家好好")
                        .setNegativeButton("再看看", new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {
                                dialog.dismiss();
                                Toast.makeText(GoodsListActivity.this, "點擊了取消按鈕", Toast.LENGTH_SHORT).show();
                            }
                        })
                        .setPositionButton("確定", new DialogInterface.OnClickListener() {
                            @Override
                            public void onClick(DialogInterface dialog, int which) {
                                dialog.dismiss();
                                Toast.makeText(GoodsListActivity.this, "點擊了確定按鈕", Toast.LENGTH_SHORT).show();
                            }
                        })
                        .create()
                        .show();

 


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

-Advertisement-
Play Games
更多相關文章
  • HTTP原理 1 簡介 HTTP是一個屬於應用層的面向對象的協議,由於其簡捷、快速的方式,適用於分散式超媒體信息系統。 HTTP協議的主要特點可概括如下: 1.支持客戶/伺服器模式。 2.簡單快速:客戶向伺服器請求服務時,只需傳送請求方法和路徑。請求方法常用的有GET、HEAD、POST。每種方法規 ...
  • 通過/system/etc/media_codecs.xml可以確定當前設備支持哪些硬解碼。通過/system/etc/media_profiles.xml可以知道設備支持的具體profile和level等詳細信息。 ...
  • 一.封裝 1.封裝的概念: 封裝,顧名思義,就是把什麼封起來,裝起來.在程式開發中,封裝是優化代碼,提高代碼安全性的一種做法,即是將不必要暴露在外界的代碼,封裝在一個類中,在外界只調用他.如果看到這裡還沒有明白的話,那麼請往下看: 比如:你買了一個手機,你可以用手機打電話,發信息,上網等等各種操作, ...
  • 最近的一些個人小作品經常要用到一些控制開始或者暫停的圖片按鈕(類似音樂播放軟體控制音樂播放或暫停的按鈕),現放出來給大家分享下。 主要功能:點擊一次就更換為另一種狀態,再點擊一次就更換回原來的狀態。 首先,我們需要一個layout文件 control_button.xml 一個簡單的LinearLa ...
  • 在Android開發中,經常需要直接查看Android SDK的源碼來理解內部功能的實現,也可以藉助源碼來調試。要想實現這些,需要在SDK Manager中下載對應API級別的源碼,如下圖: 完成上面的步驟後,在AS裡面CTRL+左鍵點擊類或方法進入源碼時,AS卻提示沒有找到源碼,如下圖: 後來發現 ...
  • 在非UI線程里調用SDK的函數出現如下異常如何處理: ...
  • 聲明:源代碼不是我寫的,是網上的以為大神寫的(地址給忘了),我拿過來以後呢,稍微改動了一下源碼,使之符合了項目需求,再次特別感謝那位大牛,非常感謝。 是一個自定義佈局,繼承自ViewGroup 2、這個自定義佈局使用起來也非常的方便 還是代碼直接點 這裡面能放兩個Viewgroup,第二個Viewg ...
  • 數據解析 1 數據傳輸過程 前端:請求(iOS/安卓(JAVA)PC(瀏覽器(HTML/CSS/JS))) :OC/JAVA/HTML/CSS/JS 後端:響應(伺服器開發:php/java/.net) 前端和後端交互的"數據格式": XML/JSON 數據解析. XML/"JSON" > OC 客 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...