summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_subscriptions.xml
diff options
context:
space:
mode:
authorTom Hennen <TomHennen@users.noreply.github.com>2016-03-27 17:38:50 -0400
committerTom Hennen <TomHennen@users.noreply.github.com>2016-03-27 17:38:50 -0400
commit365c1082b31942a033f9e7eb081c933371f8e187 (patch)
tree8d5dcd698518fb06c9d026cb18a97707e23047b3 /app/src/main/res/layout/fragment_subscriptions.xml
parentbbf1c43294a927f01cd262e7d109c66f86114a0e (diff)
parentea02b3df7f4694e2301da6bfd3bcce6c7f91c169 (diff)
downloadAntennaPod-365c1082b31942a033f9e7eb081c933371f8e187.zip
Merge pull request #1826 from TomHennen/subscriptions_view
Subscriptions view
Diffstat (limited to 'app/src/main/res/layout/fragment_subscriptions.xml')
-rw-r--r--app/src/main/res/layout/fragment_subscriptions.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_subscriptions.xml b/app/src/main/res/layout/fragment_subscriptions.xml
new file mode 100644
index 000000000..a716cecb6
--- /dev/null
+++ b/app/src/main/res/layout/fragment_subscriptions.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <GridView
+ android:id="@+id/subscriptions_grid"
+ android:layout_width="match_parent"
+ android:numColumns="3"
+ android:horizontalSpacing="2dp"
+ android:verticalSpacing="2dp"
+ android:layout_height="match_parent"
+ android:layout_gravity="center_horizontal">
+ </GridView>
+</LinearLayout>