2014-03-09 17:55:22 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-02-28 20:04:17 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-03-09 17:55:22 -04:00
|
|
|
android:id="@+id/LinearLayout1"
|
2014-02-28 20:04:17 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2014-03-09 17:55:22 -04:00
|
|
|
android:orientation="vertical"
|
2014-02-28 20:04:17 -05: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=".PhotoActivity" >
|
|
|
|
|
2014-03-09 17:55:22 -04:00
|
|
|
<GridView
|
|
|
|
android:id="@+id/GridView1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
2014-03-10 00:07:57 -04:00
|
|
|
android:numColumns="@integer/column_count"
|
2014-03-09 17:55:22 -04:00
|
|
|
android:columnWidth="90dp" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/ExitButton"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
2014-03-10 00:07:57 -04:00
|
|
|
android:text="@string/exit_button_text" />
|
2014-03-09 17:55:22 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|