我需要为我的应用中的每个活动设置背景颜色。我更愿意全局设置它。因此我改变了设置为应用程序主题的样式。
<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
。我该如何解决这个问题?
答案 0 :(得分:1)
在ImageView xml上包含这一行:
android:background="@android:color/transparent"