Cleanup layout xml code so that it follows one consistent format

This commit is contained in:
Anirudh S 2016-10-31 12:25:21 +05:30
parent 9ef32612c1
commit 12aac68bcb
24 changed files with 630 additions and 550 deletions

View file

@ -1,23 +1,22 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0c609c">
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0c609c"
>
<android.support.v4.view.ViewPager
android:id="@+id/welcomePager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadingEdge="none"
>
</android.support.v4.view.ViewPager>
android:id="@+id/welcomePager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fadingEdge="none"
/>
<com.viewpagerindicator.CirclePageIndicator
android:id="@+id/welcomePagerIndicator"
android:layout_height="24dp"
android:layout_width="fill_parent"
android:layout_gravity="bottom" />
android:id="@+id/welcomePagerIndicator"
android:layout_height="24dp"
android:layout_width="fill_parent"
android:layout_gravity="bottom"
/>
</FrameLayout>