我试图实现一个简单的事情,而不是总是将父布局背景设置为空,默认情况下通过更改应用程序主题使其为空。
它应该类似于以下样式:
<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>
但是没有为每个布局(视图组)添加样式属性。