默认情况下,设置所有视图组@null background

时间:2013-08-14 12:51:47

标签: android

我正在尝试实现一个简单的事情,而不是总是将父布局背景设置为null,默认情况下通过更改应用程序主题将其设置为null。

它应该类似于以下样式:

<style name="MyViewGroupsStyle" parent="android:Widget.ViewGroup">
    <item name="android:background">@null</item>
</style>

让我的主题包括它

我如何实现这一目标?

结果应如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@null" >
</LinearLayout>

但是没有为每个布局(视图组)添加样式属性。

0 个答案:

没有答案