亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

android alertdialog如何自定義樣式

小樊
84
2024-10-15 10:01:03
欄目: 編程語言

要自定義Android AlertDialog樣式,請遵循以下步驟:

  1. res/values目錄下創建一個名為styles.xml的文件(如果尚未創建)。

  2. styles.xml文件中,定義一個新的AlertDialog樣式。例如,創建一個名為CustomAlertDialogStyle的自定義樣式:

<resources>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

    <!-- Custom AlertDialog style -->
    <style name="CustomAlertDialogStyle" parent="ThemeOverlay.MaterialComponents.Dialog.Alert">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="alertDialogTheme">@style/CustomAlertDialogTheme</item>
    </style>

    <!-- Custom AlertDialog theme -->
    <style name="CustomAlertDialogTheme" parent="ThemeOverlay.MaterialComponents.Dialog">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="buttonBarNegativeButtonStyle">@style/NegativeButtonStyle</item>
        <item name="buttonBarPositiveButtonStyle">@style/PositiveButtonStyle</item>
        <item name="buttonBarNeutralButtonStyle">@style/NeutralButtonStyle</item>
    </style>

    <!-- Styles for the buttons -->
    <style name="NegativeButtonStyle" parent="Widget.MaterialComponents.Button.ButtonBar.AlertDialog">
        <item name="android:textColor">@color/negative_button_text_color</item>
    </style>

    <style name="PositiveButtonStyle" parent="Widget.MaterialComponents.Button.ButtonBar.AlertDialog">
        <item name="android:textColor">@color/positive_button_text_color</item>
    </style>

    <style name="NeutralButtonStyle" parent="Widget.MaterialComponents.Button.ButtonBar.AlertDialog">
        <item name="android:textColor">@color/neutral_button_text_color</item>
    </style>
</resources>

在此示例中,我們創建了一個名為CustomAlertDialogStyle的自定義樣式,它繼承自ThemeOverlay.MaterialComponents.Dialog.Alert。我們還定義了一個名為CustomAlertDialogTheme的自定義主題,用于設置按鈕和其他元素的樣式。

  1. 在創建AlertDialog時,使用AlertDialog.BuildersetTitle()setMessage()setPositiveButton()等方法設置對話框的標題、消息和按鈕。然后,使用setView()方法設置自定義視圖。最后,使用Buildercreate()方法創建AlertDialog實例,并使用show()方法顯示它。
AlertDialog.Builder builder = new AlertDialog.Builder(this, R.style.CustomAlertDialogStyle);
builder.setTitle("Custom AlertDialog");
builder.setMessage("This is a custom styled AlertDialog.");
builder.setPositiveButton("Positive Button", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        // Handle positive button click
    }
});
builder.setNegativeButton("Negative Button", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        // Handle negative button click
    }
});
builder.setNeutralButton("Neutral Button", new DialogInterface.OnClickListener() {
    @Override
    public void onClick(DialogInterface dialog, int which) {
        // Handle neutral button click
    }
});

builder.setView(R.layout.custom_alert_dialog_view);
AlertDialog alertDialog = builder.create();
alertDialog.show();

通過這種方式,您可以自定義Android AlertDialog的樣式。請注意,您可以根據需要修改styles.xml文件中的顏色和其他屬性。

0
西青区| 通渭县| 台北市| 榆树市| 依安县| 新蔡县| 泸水县| 托里县| 云南省| 六枝特区| 灵石县| 武邑县| 新竹县| 蕲春县| 广西| 资溪县| 开平市| 油尖旺区| 昆山市| 都匀市| 湾仔区| 兴山县| 北川| 共和县| 乐东| 关岭| 隆林| 蓝田县| 措勤县| 岳普湖县| 麻江县| 麟游县| 武夷山市| 洮南市| 丰县| 清徐县| 什邡市| 崇阳县| 肇源县| 福泉市| 桦南县|