summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrad <bradpitcher@gmail.com>2018-05-23 22:14:10 -0700
committerbrad <bradpitcher@gmail.com>2018-05-23 22:14:10 -0700
commit678e76def359cf338022a61660c2859dc567062a (patch)
tree9745a4333ba400f529801116dd28c3384b8c5518
parent4a783950054c3cd13730e686f1e0ff559099d3e4 (diff)
downloadAntennaPod-678e76def359cf338022a61660c2859dc567062a.zip
[#2359 #428] minimize horizontal margins around widget text
-rw-r--r--app/src/main/res/layout/player_widget.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/res/layout/player_widget.xml b/app/src/main/res/layout/player_widget.xml
index aa4999542..cabebc83f 100644
--- a/app/src/main/res/layout/player_widget.xml
+++ b/app/src/main/res/layout/player_widget.xml
@@ -49,7 +49,7 @@
android:id="@+id/txtvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_margin="8dp"
+ android:layout_marginVertical="8dp"
android:maxLines="1"
android:text="@string/no_media_playing_label"
android:textColor="@color/white"
@@ -60,7 +60,7 @@
android:id="@+id/txtvProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_margin="8dp"
+ android:layout_marginVertical="8dp"
android:textColor="@color/white" />
</LinearLayout>
</LinearLayout>