FossifyGallery/app/src/main/res/layout/activity_main.xml

19 lines
618 B
XML
Raw Normal View History

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 16:30:28 +01:00
android:layout_height="match_parent">
<GridView
android:id="@+id/photo_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/black"
android:columnWidth="@dimen/photo_size"
android:horizontalSpacing="1dp"
android:numColumns="auto_fit"
android:stretchMode="columnWidth"
android:verticalSpacing="1dp"/>
2016-02-16 22:23:25 +01:00
</RelativeLayout>