Я определил следующий стиль:
<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 height.
Возможно ли это?Любое решение?