2014-10-23 16:58:47 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-10-24 04:31:52 +00:00
|
|
|
android:layout_margin="0dp"
|
2014-10-23 16:58:47 +00:00
|
|
|
android:background="@drawable/background"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
|
|
android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
|
|
tools:context="fishrungames.bashgid.MainPageFragment" >
|
|
|
|
|
2014-10-24 04:31:52 +00:00
|
|
|
<GridView
|
|
|
|
android:id="@+id/teaserGridView"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:alwaysDrawnWithCache="true"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:horizontalSpacing="10dp"
|
|
|
|
android:numColumns="2"
|
|
|
|
android:scrollingCache="true"
|
|
|
|
android:smoothScrollbar="true"
|
|
|
|
android:stretchMode="columnWidth"
|
|
|
|
android:verticalSpacing="10dp" >
|
|
|
|
|
|
|
|
</GridView>
|
2014-10-23 16:58:47 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|