diff options
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" |