我定义了以下样式:
<style name="Activity">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:background">@drawable/background</item>
<item name="android:orientation">vertical</item>
</style>
但我想在布局中定义 layout_height="wrap_content" ,继承其余的属性:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
style="@style/Activity"
android:layout_height="wrap_content">
...
</LinearLayout>
但它继续应用 fill_parent 高度。
可能吗?任何解决方法?