Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:foo="http://schemas.android.com/apk/res-auto"
- android:orientation="vertical"
- android:background="@drawable/home_background"
- android:layout_width="match_parent"
- android:weightSum="9"
- android:layout_height="match_parent">
- <android.support.v4.view.ViewPager
- android:id="@+id/pager"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_alignParentTop="true"
- android:layout_weight="5"
- android:layout_marginTop="20dp" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="4">
- <GridView
- android:id="@+id/button_container"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:numColumns="3"
- android:layout_marginTop="10dp"
- android:layout_marginRight="30dp"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="30dp"
- android:verticalSpacing="5dp"
- android:horizontalSpacing="5dp"
- android:stretchMode="columnWidth"
- android:layout_centerInParent="true" />
- <RelativeLayout
- android:minWidth="25px"
- android:minHeight="25px"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/relativeLayout1">
- <android.support.v4.widget.SwipeRefreshLayout
- android:minWidth="25px"
- android:minHeight="25px"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/swipeRefreshLayout1" />
- </RelativeLayout>
- </RelativeLayout>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement