我有一个包含 LinearLayout,它有一个与之关联的样式,它为容器提供 20dp 的填充。这对于其中包含的 99% 的元素来说非常有用。可能有 1 个元素我希望在屏幕上扩展 (android:layout_width="match_parent") 并忽略包含 LinearLayout 设置的填充。这可能吗?或者,我是否需要从包含的 LinearLayout 中删除样式并将其单独应用于每个其他元素?
(为简洁起见,排除了一些属性)
<LinearLayout
android:padding="20dp">
<TextView
android:id="@+id/txtTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/txtDate"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<!-- Would like this to ignore padding, extend fully. -->
<TextView
android:id="@+id/txtExperienceTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/sub_header_title" />
</LinearLayout>