I have FrameLayout and for most fragments the parrent padding is good. But I have especial fragment which must not contain the padding.
<FrameLayout
android:id="@+id/frame_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
/>
<!-- My especial fragment -->
<LiearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="-10dp"
/>
Any suggestions!