最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android修改Dialog樣式的方法

 更新時間:2021年05月24日 08:32:27   作者:一條魚和一片海  
Android 對話框支持自定義標題,內(nèi)容,按鈕和點擊事件,基本上可以滿足我們?nèi)粘5氖褂谩?但有時候我們想要修改對話框的文字,按鈕顏色等,系統(tǒng)并沒有提供對應(yīng)的方法,正常情況下只能自定義布局。 接下來通過源碼解析介紹幾種修改 Dialog樣式的方法。

一、Dialog源碼解析

1.1 new AlertDialog.Builder(this).create()

    protected AlertDialog(@NonNull Context context, @StyleRes int themeResId) {
        super(context, resolveDialogTheme(context, themeResId));
        //創(chuàng)建AlertController,是Dialog布局相關(guān)代碼
        mAlert = new AlertController(getContext(), this, getWindow());
    }

        @NonNull
        public AlertDialog create() {
            // We can't use Dialog's 3-arg constructor with the createThemeContextWrapper param,
            // so we always have to re-set the theme
            final AlertDialog dialog = new AlertDialog(P.mContext, mTheme);
            P.apply(dialog.mAlert);
            dialog.setCancelable(P.mCancelable);
            if (P.mCancelable) {
                dialog.setCanceledOnTouchOutside(true);
            }
            dialog.setOnCancelListener(P.mOnCancelListener);
            dialog.setOnDismissListener(P.mOnDismissListener);
            if (P.mOnKeyListener != null) {
                dialog.setOnKeyListener(P.mOnKeyListener);
            }
            return dialog;
        }

        public void apply(AlertController dialog) {
            if (mCustomTitleView != null) {
                dialog.setCustomTitle(mCustomTitleView);
            } else {
                if (mTitle != null) {
                    dialog.setTitle(mTitle);
                }
                if (mIcon != null) {
                    dialog.setIcon(mIcon);
                }
                if (mIconId != 0) {
                    dialog.setIcon(mIconId);
                }
            ..........
  • AlertDialog 構(gòu)造函數(shù)中會創(chuàng)建 AlertController,用來控制對話框的布局
  • P.apply(dialog.mAlert); 將用戶自定義的配置賦值給 AlertController

1.2 AlertController

    public AlertController(Context context, AppCompatDialog di, Window window) {
        mContext = context;
        mDialog = di;
        mWindow = window;
        mHandler = new ButtonHandler(di);

        final TypedArray a = context.obtainStyledAttributes(null, R.styleable.AlertDialog,
                R.attr.alertDialogStyle, 0);

        mAlertDialogLayout = a.getResourceId(R.styleable.AlertDialog_android_layout, 0);
        mButtonPanelSideLayout = a.getResourceId(R.styleable.AlertDialog_buttonPanelSideLayout, 0);

        mListLayout = a.getResourceId(R.styleable.AlertDialog_listLayout, 0);
        mMultiChoiceItemLayout = a.getResourceId(R.styleable.AlertDialog_multiChoiceItemLayout, 0);
        mSingleChoiceItemLayout = a
                .getResourceId(R.styleable.AlertDialog_singleChoiceItemLayout, 0);
        mListItemLayout = a.getResourceId(R.styleable.AlertDialog_listItemLayout, 0);
        mShowTitle = a.getBoolean(R.styleable.AlertDialog_showTitle, true);
        mButtonIconDimen = a.getDimensionPixelSize(R.styleable.AlertDialog_buttonIconDimen, 0);

        a.recycle();

        /* We use a custom title so never request a window title */
        di.supportRequestWindowFeature(Window.FEATURE_NO_TITLE);
    }

R.attr.alertDialogStyle 是 對話框的默認樣式,

        <item name="alertDialogStyle">@style/AlertDialog.AppCompat</item>
        <style name="AlertDialog.AppCompat" parent="Base.AlertDialog.AppCompat"/>
      	<style name="Base.AlertDialog.AppCompat" parent="android:Widget">
        	<item name="android:layout">@layout/abc_alert_dialog_material</item>
        	<item name="listLayout">@layout/abc_select_dialog_material</item>
       	 	<item name="listItemLayout">@layout/select_dialog_item_material</item>
        	<item name="multiChoiceItemLayout">@layout/select_dialog_multichoice_material</item>
        	<item name="singleChoiceItemLayout">@layout/select_dialog_singlechoice_material</item>
        	<item name="buttonIconDimen">@dimen/abc_alert_dialog_button_dimen</item>
    	</style>      

上述代碼可以看出,abc_alert_dialog_material 就是dialog的默認布局。

<androidx.appcompat.widget.AlertDialogLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/parentPanel"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="start|left|top"
    android:orientation="vertical">

    <include layout="@layout/abc_alert_dialog_title_material"/>

    <FrameLayout
        android:id="@+id/contentPanel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="48dp">

        <View android:id="@+id/scrollIndicatorUp"
              android:layout_width="match_parent"
              android:layout_height="1dp"
              android:layout_gravity="top"
              android:background="?attr/colorControlHighlight"
              android:visibility="gone"/>

        <androidx.core.widget.NestedScrollView
            android:id="@+id/scrollView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clipToPadding="false">

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

                <android.widget.Space
                    android:id="@+id/textSpacerNoTitle"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/abc_dialog_padding_top_material"
                    android:visibility="gone"/>

                <TextView
                    android:id="@android:id/message"
                    style="@style/TextAppearance.AppCompat.Subhead"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:paddingLeft="?attr/dialogPreferredPadding"
                    android:paddingRight="?attr/dialogPreferredPadding"/>

                <android.widget.Space
                    android:id="@+id/textSpacerNoButtons"
                    android:layout_width="match_parent"
                    android:layout_height="@dimen/abc_dialog_padding_top_material"
                    android:visibility="gone"/>
            </LinearLayout>
        </androidx.core.widget.NestedScrollView>

        <View android:id="@+id/scrollIndicatorDown"
              android:layout_width="match_parent"
              android:layout_height="1dp"
              android:layout_gravity="bottom"
              android:background="?attr/colorControlHighlight"
              android:visibility="gone"/>

    </FrameLayout>

    <FrameLayout
        android:id="@+id/customPanel"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="48dp">

        <FrameLayout
            android:id="@+id/custom"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
    </FrameLayout>

    <include layout="@layout/abc_alert_dialog_button_bar_material"
             android:layout_width="match_parent"
             android:layout_height="wrap_content"/>

</androidx.appcompat.widget.AlertDialogLayout>

標題布局:

<!-- abc_alert_dialog_title_material: -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:id="@+id/topPanel"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:orientation="vertical">

    <!-- If the client uses a customTitle, it will be added here. -->

    <LinearLayout
        android:id="@+id/title_template"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|start|left"
        android:orientation="horizontal"
        android:paddingLeft="?attr/dialogPreferredPadding"
        android:paddingRight="?attr/dialogPreferredPadding"
        android:paddingTop="@dimen/abc_dialog_padding_top_material">

        <ImageView
            android:id="@android:id/icon"
            android:layout_width="32dip"
            android:layout_height="32dip"
            android:layout_marginEnd="8dip"
            android:layout_marginRight="8dip"
            android:scaleType="fitCenter"
            android:src="@null"/>

        <androidx.appcompat.widget.DialogTitle
            android:id="@+id/alertTitle"
            style="?android:attr/windowTitleStyle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="start"
            android:ellipsize="end"
            android:singleLine="true"
            android:textAlignment="viewStart"/>

    </LinearLayout>

    <android.widget.Space
        android:id="@+id/titleDividerNoCustom"
        android:layout_width="match_parent"
        android:layout_height="@dimen/abc_dialog_title_divider_material"
        android:visibility="gone"/>
</LinearLayout>

按鈕布局:

<!-- abc_alert_dialog_button_bar_material: -->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/buttonPanel"
            style="?attr/buttonBarStyle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:fillViewport="true"
            android:scrollIndicators="top|bottom">

    <androidx.appcompat.widget.ButtonBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="bottom"
        android:layoutDirection="locale"
        android:orientation="horizontal"
        android:paddingBottom="4dp"
        android:paddingLeft="12dp"
        android:paddingRight="12dp"
        android:paddingTop="4dp">

        <Button
            android:id="@android:id/button3"
            style="?attr/buttonBarNeutralButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

        <android.widget.Space
            android:id="@+id/spacer"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:visibility="invisible"/>

        <Button
            android:id="@android:id/button2"
            style="?attr/buttonBarNegativeButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

        <Button
            android:id="@android:id/button1"
            style="?attr/buttonBarPositiveButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

    </androidx.appcompat.widget.ButtonBarLayout>

</ScrollView>

二、修改Dialog樣式

2.1 通過findViewById

      AlertDialog.Builder builder = new AlertDialog.Builder(this);
      builder.setMessage(msg);
      builder.setPositiveButton(getString(R.string.yes), null);
      AlertDialog dialog = builder.create();
      dialog.show();
      //直接通過id找到對應(yīng)的控件
      Button button = dialog.findViewById(android.R.id.button1);
      //或者通過getButton方法也可以獲取到
      Button button2 = dialog.getButton(DialogInterface.BUTTON_POSITIVE);

這種修改方式必須在 show() 之后調(diào)用,否則會出現(xiàn)空指針異常。這個是因為,執(zhí)行 show() 方法的時候,dialog才會初始化布局,具體源碼可以查看 Dialog 的 onCreate 方法。

2.2 自定義style

通過上面源碼可以發(fā)現(xiàn),Dialog三個按鈕的樣式如下:

  • buttonBarNeutralButtonStyle
  • buttonBarNegativeButtonStyle
  • buttonBarPositiveButtonStyle
        <Button
            android:id="@android:id/button3"
            style="?attr/buttonBarNeutralButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

        <android.widget.Space
            android:id="@+id/spacer"
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:visibility="invisible"/>

        <Button
            android:id="@android:id/button2"
            style="?attr/buttonBarNegativeButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

        <Button
            android:id="@android:id/button1"
            style="?attr/buttonBarPositiveButtonStyle"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

自定義樣式替換上述 style即可達到修改效果。

在style.xml添加如下代碼:

    <style name="accessPositiveBtnStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
        <item name="android:textColor">@color/test1</item>
    </style>

    <style name="accessNegativeBtnStyle" parent="Widget.AppCompat.Button.ButtonBar.AlertDialog">
        <item name="android:textColor">@color/test2</item>
    </style>

    <!-- 彈出框樣式 -->
    <style name="testDialogTheme" parent="Theme.AppCompat.Light.Dialog.Alert">
        <item name="buttonBarPositiveButtonStyle">@style/accessPositiveBtnStyle</item>
        <item name="buttonBarNegativeButtonStyle">@style/accessNegativeBtnStyle</item>
    </style>

具體使用:

    AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.testDialogTheme);
    builder.setMessage("Test");
    builder.setCancelable(false);
    builder.setPositiveButton("確認", null);
    builder.setNegativeButton("取消", null);
    Dialog dialog = builder.create();
    dialog.show();

以上就是Android修改Dialog樣式的方法的詳細內(nèi)容,更多關(guān)于Android修改Dialog樣式的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • 詳解Android TabHost的多種實現(xiàn)方法 附源碼下載

    詳解Android TabHost的多種實現(xiàn)方法 附源碼下載

    這篇文章主要為大家詳細介紹了Android TabHost的多種實現(xiàn)方法 文章中針對每一種實現(xiàn)方法都附有源碼進行下載,感興趣的小伙伴們可以參考一下
    2016-05-05
  • Android開發(fā)中常見問題

    Android開發(fā)中常見問題

    這篇文章主要為大家詳細介紹了Android開發(fā)中常見問題,主要涉及了七個問題,希望能幫助到大家,感興趣的小伙伴們可以參考一下
    2016-06-06
  • Android實戰(zhàn)教程第六篇之一鍵鎖屏應(yīng)用問題解決

    Android實戰(zhàn)教程第六篇之一鍵鎖屏應(yīng)用問題解決

    這篇文章主要為大家詳細介紹了Android一鍵鎖屏應(yīng)用開發(fā)過程中出現(xiàn)問題的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2016-11-11
  • RecyclerView焦點跳轉(zhuǎn)BUG優(yōu)化的方法

    RecyclerView焦點跳轉(zhuǎn)BUG優(yōu)化的方法

    這篇文章主要介紹了RecyclerView焦點跳轉(zhuǎn)BUG優(yōu)化的方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-04-04
  • Android開發(fā)之如何自定義數(shù)字鍵盤詳解

    Android開發(fā)之如何自定義數(shù)字鍵盤詳解

    這篇文章主要給大家介紹了關(guān)于Android開發(fā)之如何自定義數(shù)字鍵盤的相關(guān)資料,本文語言是基于kotlin實現(xiàn)的,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起看看吧。
    2017-09-09
  • Android觸摸事件傳遞機制

    Android觸摸事件傳遞機制

    這篇文章主要介紹了Android觸摸事件傳遞機制,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2018-04-04
  • Android實現(xiàn)下載m3u8視頻文件問題解決

    Android實現(xiàn)下載m3u8視頻文件問題解決

    這篇文章主要介紹了Android實現(xiàn)下載m3u8視頻文件,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧
    2023-01-01
  • Android使用RecycleView實現(xiàn)拖拽交換item位置

    Android使用RecycleView實現(xiàn)拖拽交換item位置

    這篇文章主要為大家詳細介紹了Android使用RecycleView實現(xiàn)拖拽交換item位置,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-08-08
  • Android Handler之消息循環(huán)的深入解析

    Android Handler之消息循環(huán)的深入解析

    本篇文章是對Handler消息循環(huán)進行了詳細的分析介紹,需要的朋友參考下
    2013-05-05
  • Flutter框架解決盒約束widget和assets里加載資產(chǎn)技術(shù)

    Flutter框架解決盒約束widget和assets里加載資產(chǎn)技術(shù)

    這篇文章主要為大家介紹了Flutter框架解決盒約束widget和assets里加載資產(chǎn)技術(shù)運用詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-12-12

最新評論

彰武县| 林周县| 双流县| 城口县| 额尔古纳市| 灵寿县| 苏尼特右旗| 东城区| 长阳| 瓦房店市| 吉安市| 双城市| 金华市| 文山县| 安吉县| 凤庆县| 静宁县| 泽普县| 漳州市| 江门市| 永平县| 新安县| 扬州市| 兰溪市| 佳木斯市| 金华市| 伊春市| 塔城市| 工布江达县| 鹤岗市| 明水县| 临邑县| 永吉县| 都兰县| 洛南县| 连山| 滕州市| 宣武区| 沾益县| 长垣县| 阿坝县|