diff options
author | Daniel Oeh <daniel@danielpc.(none)> | 2012-04-12 20:51:59 +0200 |
---|---|---|
committer | Daniel Oeh <daniel@danielpc.(none)> | 2012-04-12 20:51:59 +0200 |
commit | 13cb72c34e2daccf6c913d68a77bd3d3cd137ab5 (patch) | |
tree | 5370b790f52392652d064062ea32ee225ca88fb3 /res | |
parent | ca2eefe1692c64e6accd7f845bdf06edaa5804bc (diff) | |
download | AntennaPod-13cb72c34e2daccf6c913d68a77bd3d3cd137ab5.zip |
Added size in FeedItemlist
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/feeditemlist_item.xml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/res/layout/feeditemlist_item.xml b/res/layout/feeditemlist_item.xml index 406303f67..a51d64cd7 100644 --- a/res/layout/feeditemlist_item.xml +++ b/res/layout/feeditemlist_item.xml @@ -1,11 +1,17 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="match_parent" - android:layout_height="match_parent" > + android:layout_width="fill_parent" + android:layout_height="fill_parent" > <TextView android:id="@+id/txtvItemname" android:layout_width="fill_parent" android:layout_height="wrap_content" - android:layout_alignParentLeft="true" - /> + /> + <TextView + android:id="@+id/txtvItemsize" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_below="@id/txtvItemname" + /> + </RelativeLayout> |