我需要为我的应用程序中的每个活动设置背景颜色。我更愿意全局设置它。因此,我将样式设置为应用程序主题。
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
<item name="android:background">@color/app_bg</item>
</style>
</resources>
问题是,现在所有的imageview和textview没有指定的背景得到应用程序的背景,而不是父布局的背景,例如
<RelativeLayout
android:id="@+id/mmc_rl"
android:layout_width="match_parent"
android:layout_height="@dimen/mm_central_height"
android:background="@color/main_menu_central_bg">
<ImageView
android:id="@+id/mmc_iv_goto"
android:layout_width="@dimen/mm_central_height"
android:layout_height="@dimen/mm_central_height"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:src="@drawable/button_goto_big3" />
</RelativeLayout>
ImageView的背景是app_bg
而不是预期的main_menu_central_bg
。我该如何解决这个问题?
在ImageView xml中包含这一行:
android:background="@android:color/transparent"