gpt4 book ai didi

android - 使用 sherloack bar 为所有应用程序设置背景颜色

转载 作者:行者123 更新时间:2023-11-30 03:51:31 25 4
gpt4 key购买 nike

我想将我所有 Activity 的背景设置为白色。仍然没有找到简单的方法,它将我的文本颜色更改为黑色。我在我的一些 Activity 中使用 sherloack bar,我认为这是我的问题。我的 list 看起来像这样:

<application
android:icon="@drawable/rss"
android:label="@string/app_name"
android:theme="@style/CustomTheme"
>
<activity
android:name=".ListRss"
android:label="@string/title_activity_listr_rss"
android:theme="@style/Theme.Sherlock" >
</activity>
<activity android:name="RssItem" >
</activity>
<activity android:name="editRss.AddNewRss">
</activity>
<activity android:name="openRssItem.WebActivity" >

我的风格在哪里

   <style name="CustomWindowTitleBackground">
<item name="android:background">#FFFFFF</item>
</style>

<style name="CustomTheme" parent="android:Theme">
<item name="android:background">#FFFFFF</item>
<item name="android:windowTitleSize">35dip</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>
</style>

以我的 Activity 为例

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/BackgroundColor"
android:id="@+id/myScreen">
<LinearLayout
android:id="@+id/linearLa"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

>

<ImageView
android:id="@+id/image"
android:layout_width="50dip"
android:layout_height="50dip"
android:scaleType="centerCrop"
android:src="@drawable/rss" />

很高兴收到一个简单的解决方案,将背景颜色解决为白色,将文本解决为黑色。

最佳答案

如果你想使用 ActionBarSherlock(除非你想覆盖所有内容......),你不能使用 android:Theme 作为你主题的父主题。如果你想拥有浅色主题,你必须使用这个:

<style name="CustomTheme" parent="Theme.Sherlock.Light">
[...]
</style>

关于android - 使用 sherloack bar 为所有应用程序设置背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14084303/

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