diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-08-15 16:46:42 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-08-15 16:46:42 +0200 |
commit | 22bcb2463ce21d37c2117f7a0356f2bd1abcbff3 (patch) | |
tree | 45996177e9ed07a9792bf10e451b3eb2e8e6e465 /res | |
parent | 54c135b6a245a8c8fa80731cd4bb6ea54fbc9b87 (diff) | |
download | AntennaPod-22bcb2463ce21d37c2117f7a0356f2bd1abcbff3.zip |
Improved layout of download list
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/downloadlist_item.xml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/res/layout/downloadlist_item.xml b/res/layout/downloadlist_item.xml index f270c7725..688a64876 100644 --- a/res/layout/downloadlist_item.xml +++ b/res/layout/downloadlist_item.xml @@ -8,20 +8,22 @@ android:id="@+id/txtvTitle" android:layout_width="match_parent" android:layout_height="wrap_content" + android:layout_marginLeft="8dp" + android:layout_marginTop="8dp" android:textStyle="bold" /> <TextView android:id="@+id/txtvMessage" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_margin="4dp" /> + android:layout_margin="8dp" /> <ProgressBar android:id="@+id/progProgress" - style="@android:style/Widget.ProgressBar.Horizontal" + style="?android:attr/progressBarStyleHorizontal" android:layout_width="match_parent" android:layout_height="16dp" - android:layout_margin="4dp" /> + android:layout_margin="8dp" /> <RelativeLayout android:layout_width="match_parent" |