2014-03-18 20:36:22 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-18 20:33:51 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-03-18 20:36:22 -04:00
|
|
|
android:id="@+id/layout_async"
|
2014-03-18 20:33:51 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-03-18 20:36:22 -04:00
|
|
|
android:orientation="vertical"
|
2014-03-18 20:33:51 -04:00
|
|
|
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=".MainActivity" >
|
|
|
|
|
2014-03-18 20:36:22 -04:00
|
|
|
<GridView
|
|
|
|
android:id="@+id/grid_async"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:columnWidth="90dp"
|
|
|
|
android:numColumns="@integer/column_count" />
|
|
|
|
|
2014-03-18 20:33:51 -04:00
|
|
|
<Button
|
2014-03-18 20:36:22 -04:00
|
|
|
android:id="@+id/btn_exit_async"
|
|
|
|
android:layout_width="match_parent"
|
2014-03-18 20:33:51 -04:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-18 20:36:22 -04:00
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:text="@string/exit_button_text" />
|
2014-03-18 20:33:51 -04:00
|
|
|
|
2014-03-18 20:36:22 -04:00
|
|
|
</LinearLayout>
|