summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Pitcher <bradpitcher@gmail.com>2019-04-11 22:26:01 -0700
committerBrad Pitcher <bradpitcher@gmail.com>2019-04-11 22:26:01 -0700
commit64ddf6ec96a3a0e08367bae21c80c99929f8ee1f (patch)
tree05ce416eb087d0b92ad48901f88975d4afa21be8
parent210afaeb3c6ebee13d0d18a4b797cde58e3d7434 (diff)
downloadAntennaPod-64ddf6ec96a3a0e08367bae21c80c99929f8ee1f.zip
use app_icon_size for layout width on widget components
-rw-r--r--core/src/main/res/layout/player_widget.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/main/res/layout/player_widget.xml b/core/src/main/res/layout/player_widget.xml
index cabebc83f..5d3365dde 100644
--- a/core/src/main/res/layout/player_widget.xml
+++ b/core/src/main/res/layout/player_widget.xml
@@ -12,7 +12,7 @@
<ImageButton
android:id="@+id/butPlay"
android:contentDescription="@string/play_label"
- android:layout_width="72dp"
+ android:layout_width="@android:dimen/app_icon_size"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:layout_margin="12dp"
@@ -31,11 +31,11 @@
<ImageView
android:id="@+id/imgvCover"
- android:layout_width="72dp"
+ android:layout_width="@android:dimen/app_icon_size"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
- android:layout_toLeftOf="@id/layout_center"
- android:layout_margin="12dp" />
+ android:layout_margin="12dp"
+ android:layout_toLeftOf="@id/layout_center" />
<LinearLayout
android:id="@+id/layout_center"