diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-08-15 16:37:38 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-08-15 16:37:38 +0200 |
commit | 54c135b6a245a8c8fa80731cd4bb6ea54fbc9b87 (patch) | |
tree | d788fc8fc46a6ba8efdab668111343a39a4ce458 /res | |
parent | 183ea832cb5c395b1757875d8764dc85015c86b4 (diff) | |
download | AntennaPod-54c135b6a245a8c8fa80731cd4bb6ea54fbc9b87.zip |
Fixed width of TextViews in Feedlist
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/feedlist_item.xml | 37 |
1 files changed, 17 insertions, 20 deletions
diff --git a/res/layout/feedlist_item.xml b/res/layout/feedlist_item.xml index 4f90d3d74..070d214c1 100644 --- a/res/layout/feedlist_item.xml +++ b/res/layout/feedlist_item.xml @@ -3,33 +3,40 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="4dp" - android:paddingTop="4dp" - android:paddingRight="16dp"> - - + android:paddingRight="16dp" + android:paddingTop="4dp" > <ImageView android:id="@+id/imgvFeedimage" android:layout_width="55dip" android:layout_height="55dip" - android:layout_centerVertical="true" android:layout_alignParentLeft="true" + android:layout_centerVertical="true" android:layout_marginLeft="1dip" android:layout_marginRight="4dip" android:cropToPadding="true" /> - <LinearLayout - xmlns:android="http://schemas.android.com/apk/res/android" + <TextView + android:id="@+id/txtvNewEps" android:layout_width="wrap_content" android:layout_height="match_parent" + android:layout_alignParentRight="true" + android:layout_centerVertical="true" + android:textSize="20dp" + android:textStyle="bold" /> + + <LinearLayout + android:layout_width="0dp" + android:layout_height="match_parent" + android:layout_toLeftOf="@id/txtvNewEps" android:layout_toRightOf="@id/imgvFeedimage" android:orientation="vertical" > <TextView android:id="@+id/txtvFeedname" - android:maxLines="2" android:layout_width="match_parent" android:layout_height="wrap_content" + android:maxLines="2" android:textStyle="bold" /> <TextView @@ -42,18 +49,8 @@ android:id="@+id/txtvLastUpdate" android:layout_width="match_parent" android:layout_height="wrap_content" - android:textColor="@color/gray" - android:textStyle="italic"/> + android:textColor="@color/gray" + android:textStyle="italic" /> </LinearLayout> - - <TextView - android:id="@+id/txtvNewEps" - android:layout_width="wrap_content" - android:layout_height="match_parent" - android:layout_alignParentRight="true" - android:layout_centerVertical="true" - android:textSize="20dp" - android:textStyle="bold" - android:visibility="gone" /> </RelativeLayout>
\ No newline at end of file |