gpt4 book ai didi

ICS 和 Gingerbread 上的 Android 自定义警报对话框不同

转载 作者:太空宇宙 更新时间:2023-11-03 11:59:54 25 4
gpt4 key购买 nike

我有一个自定义的警报对话框,它可以使这个自定义布局膨胀:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/infoLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:theme="@style/AppTheme" >


<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:weightSum="2" >

<TextView
android:id="@+id/infoVersionTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right|center"
android:text="@string/infoVersion"
android:textAppearance="?android:attr/textAppearanceLarge" />

<TextView
android:id="@+id/infoVersionTitleValue"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>

<TextView
android:id="@+id/infoDetailText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/linearLayout1"
android:padding="10dp" />

</RelativeLayout>

我的 list 文件中有这个:

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="15" />
........
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

我以这种方式定义了 style.xml:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="android:Theme.Light"></style>
</resources>

style.xml v11 定义如下:

<resources>
<style name="AppTheme" parent="android:Theme.Light"></style>
</resources>

style.xml v14 定义如下:

<resources>
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar" />
</resources>

在 4.0.3 设备上运行时显示如下:

enter image description here

在 2.3.3 设备上运行它显示如下:

enter image description here

在 2.3.3 设备上,文本几乎不可读,我想显示白色背景(包括标题栏)

是否可以像在 4.0.3 上那样在所有设备上显示自定义警报对话框?

我看到了 this但似乎无法弄清楚。

有什么解决办法吗?

最佳答案

在创建对话框时尝试调用 AlertDialog.Builder#setInverseBackgroundForced(true)

关于ICS 和 Gingerbread 上的 Android 自定义警报对话框不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12261126/

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