gpt4 book ai didi

android - 为什么android :colorBackground work?没有

转载 作者:行者123 更新时间:2023-12-02 17:30:06 25 4
gpt4 key购买 nike

在这个 HelloWorld 应用中,我使用了 android:colorBackground 属性,但它没有应用红色背景。

AndroidManifest.xml:

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme" >
<activity
android:name=".EditTextActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

布局 xml:

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".EditTextActivity">

<TextView
android:text="Hello World!"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="40sp"
/>
</RelativeLayout>

style.xml:

<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:colorBackground">#ff0000</item>
</style>
</resources>

结果如下所示(没有红色背景): Hello World

最佳答案

您可以在 RelativeLayout 中使用 android:background="#FF0000" 或为 v21 创建一个 styles.xml 并写下:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:windowBackground">@color/redcolor</item>

</style>

也在你的 styles.xml 中:

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:windowBackground">@color/redcolor</item>
</style>

关于android - 为什么android :colorBackground work?没有,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34469368/

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