From db3f4b3f6b1ff18305e6822a60856d0dc6a663ee Mon Sep 17 00:00:00 2001 From: Ashok Varma Date: Fri, 2 Dec 2016 12:32:56 +0530 Subject: [PATCH] Update fragment_slide.xml margin is not reflecting. so changed those to padding. (Check layout bounds for proof) --- .../src/main/res/layout/fragment_slide.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/material-intro-screen/src/main/res/layout/fragment_slide.xml b/material-intro-screen/src/main/res/layout/fragment_slide.xml index b8ed075..adc6c1d 100644 --- a/material-intro-screen/src/main/res/layout/fragment_slide.xml +++ b/material-intro-screen/src/main/res/layout/fragment_slide.xml @@ -5,9 +5,9 @@ android:id="@+id/slide_background" android:layout_width="match_parent" android:layout_height="match_parent" - android:layout_marginLeft="16dp" - android:layout_marginRight="16dp" - android:layout_marginTop="16dp" + android:paddingLeft="16dp" + android:paddingRight="16dp" + android:paddingTop="16dp" android:background="@android:color/transparent" android:clipToPadding="false" android:fitsSystemWindows="false"