私は次のスタイルを定義しました:
<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 の高さは引き続き適用されます。
出来ますか?回避策はありますか?