コンテナに20dpのパディングを与えるスタイルが関連付けられているLinearLayoutを含んでいます。これは、内部に含まれる要素の 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>