我是Android新手。我想将应用程序的背景设置为白色,因此我在应用程序主题的样式文件中指定了此背景。但是这样做之后,我发现我的应用程序的选项卡布局和菜单项背景也变成了白色。我不知道该怎么做。试图找到解决方案,但找不到。
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:background">@color/white</item>
</style>
</resources>
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<!-- THIS IS THE VIEW PAGER WIDGET, WHICH IS BASICALLY A CONTAINER OR PARENT FOR FRAGMENTS.
IT GETS ITS SUPPLIES FROM PAGER ADAPTER. :) -->
<android.support.v4.view.ViewPager
android:layout_height="match_parent"
android:layout_width="match_parent"
android:id="@+id/viewpager">
<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
app:tabBackground="@color/colorPrimary">
<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/tab_stock"/>
<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/tab_sale"/>
<android.support.design.widget.TabItem
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/tab_purchase"/>
</android.support.design.widget.TabLayout>
</android.support.v4.view.ViewPager>
</LinearLayout>
colors.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
<color name="white">#ffffff</color>
<!-- COLOR FOR STOCK FRAGMENT' SUB HEADINGS -->
<color name="colorSubHeading">#03A9F4</color>
<color name="black">#000000</color>
</resources>
最后,我想提到我删除了操作栏,而是使用工具栏。预先感谢。
答案 0 :(得分:1)
通过将android:background
设置为您的样式,它会(几乎)影响我猜到的一切。只需将android:background="@color/white"
设置为您的activity_main.xml的根LinearLayout,例如
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/white"
android:orientation="vertical">
它应该可以根据需要工作。
编辑:
如果要设置所有活动的背景,请参阅this SO Post。
基本上,您创建一个themes.xml
,为android:windowBackground
添加一个主题和一个值,并通过AndroidManifest.xml
文件中的每个所需的Activity或android:theme="@style/CustomTheme"
文件中的整个应用来具体化主题match event {
n if is_quit_event(n) => winit::ControlFlow::Break,
_ => winit::ControlFlow::Continue,
}
。