gpt4 book ai didi

android - AlertDialog 改变正面按钮颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:56:44 29 4
gpt4 key购买 nike

enter image description here

我想在 Alertdialog 中改变正向按钮的颜色,下面是我正在做的事情:

//style.xml

<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:buttonBarPositiveButtonStyle">@style/positive</item>
</style>

<style name="positive">
<item name="android:textColor">@color/accent</item>
</style>

我通过以下方式使用样式:

AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), R.style.AlertDialogCustom);

但我所做的不起作用,我只想更改正按钮的颜色。我不想在 Java 代码中更改按钮的颜色。

提前致谢:-)

编辑-1警报对话框布局 xml

<android.support.v7.internal.widget.ButtonBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/buttonPanel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="locale"
android:orientation="horizontal"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:paddingTop="4dp"
android:paddingBottom="4dp"
android:gravity="bottom"
app:allowStacking="@bool/abc_allow_stacked_button_bar"
style="?attr/buttonBarStyle">

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

<android.support.v4.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" />

最佳答案

注意:不推荐该方案,因为这实际上是一个hacky方案。它不遵循 android 设计,不应使用。我通过 java 更改正按钮颜色。感谢@Divers 指出这一点。

styles.xml

<style name="AlertDialogCustom" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="buttonBarPositiveButtonStyle">@style/positive</item>
</style>

<style name="positive">
<item name="android:textColor">@color/accent</item>
</style>

用法

AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), R.style.AlertDialogCustom);

也许这里有一点你应该注意,buttonBarPositiveButtonStyle 而不是 android: buttonBarPositiveButtonStyle

关于android - AlertDialog 改变正面按钮颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39814144/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com