diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-08-11 15:45:30 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-08-11 15:45:30 +0200 |
commit | 522d61577b1c8eedf07d7690cee04e447cec51ed (patch) | |
tree | df76ab2ea62857309fa6e244a86c5002fab16424 /res/layout-large | |
parent | 168d48cd02f14af2a860183785ba4df947910e84 (diff) | |
download | AntennaPod-522d61577b1c8eedf07d7690cee04e447cec51ed.zip |
Implemented GridView in FeedlistFragment
Diffstat (limited to 'res/layout-large')
-rw-r--r-- | res/layout-large/feedlist.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/res/layout-large/feedlist.xml b/res/layout-large/feedlist.xml new file mode 100644 index 000000000..f7a116c87 --- /dev/null +++ b/res/layout-large/feedlist.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent" + android:orientation="vertical" > + + <GridView + android:id="@+id/grid" + android:layout_width="match_parent" + android:layout_height="0dp" + android:layout_weight="1" + android:horizontalSpacing="32dp" + android:numColumns="auto_fit" + android:verticalSpacing="32dp" /> + + <TextView + android:id="@id/android:empty" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:gravity="center" + android:layout_gravity="center" + android:text="@string/no_feeds_label" /> + +</LinearLayout>
\ No newline at end of file |