2016-02-16 22:23:25 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2016-02-20 18:59:18 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@android:color/black">
|
2016-02-20 16:30:28 +01:00
|
|
|
|
|
|
|
<GridView
|
|
|
|
android:id="@+id/photo_grid"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:columnWidth="@dimen/photo_size"
|
2016-02-20 18:14:09 +01:00
|
|
|
android:horizontalSpacing="2dp"
|
2016-02-20 16:30:28 +01:00
|
|
|
android:numColumns="auto_fit"
|
|
|
|
android:stretchMode="columnWidth"
|
2016-02-20 18:14:09 +01:00
|
|
|
android:verticalSpacing="2dp"/>
|
2016-02-16 22:23:25 +01:00
|
|
|
|
|
|
|
</RelativeLayout>
|