Added size in FeedItemlist

This commit is contained in:
Daniel Oeh
2012-04-12 20:51:59 +02:00
parent ca2eefe169
commit 13cb72c34e
3 changed files with 48 additions and 4 deletions

View File

@ -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>