gpt4 book ai didi

Android AlertDialog标题背景色

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:22:55 26 4
gpt4 key购买 nike

有没有办法改变AlertDialog (android.support.v7.app.AlertDialog) 的标题背景色??目前在我的主题中有

 <item name="alertDialogTheme">@style/AppCompatAlertDialogStyle</item>

<style name="AppCompatAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/colorAccent</item>
</style>

我是这样理解的,

enter image description here

我怎样才能让它看起来像这样,

enter image description here

使用

<style name="AppCompatAlertDialogStyle" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowTitleStyle">@style/DialogTitle</item>
</style>

<style name="DialogTitle">
<item name="android:background">@color/colorPrimary</item>
</style>

给予

enter image description here

关于如何实现这一点有什么想法吗?

最佳答案

你可以像这样设置自定义标题

LayoutInflater inflater = this.getLayoutInflater();

View titleView = inflater.inflate(R.layout.custom_title, null);

new AlertDialog.Builder(SubCategoryActivity.this)
.setCustomTitle(titleView);

在 custom_title 布局中,您可以像这样创建自定义标题

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:id="@+id/llsubhead"
android:background="@color/colorPrimary">

<TextView
android:id="@+id/exemptionSubHeading4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:layout_weight="1"
android:text="Exemption Sub Head"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Medium"
android:textColor="@color/white" />
</LinearLayout>
</LinearLayout>

关于Android AlertDialog标题背景色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34240039/

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