diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2013-04-06 21:28:57 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2013-04-06 21:28:57 +0200 |
commit | 05a525876dbfe6c36a80c49aace76d80f048511a (patch) | |
tree | d35d1e5a381b45a63c4d20741d3210d36778ba54 /res | |
parent | bab27809c7d12ea5be3459d8bdadcab54c8e1b3f (diff) | |
download | AntennaPod-05a525876dbfe6c36a80c49aace76d80f048511a.zip |
Increased player button size, decreased title text size
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/audioplayer_activity.xml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/res/layout/audioplayer_activity.xml b/res/layout/audioplayer_activity.xml index 73a0e0be6..bf7540ed1 100644 --- a/res/layout/audioplayer_activity.xml +++ b/res/layout/audioplayer_activity.xml @@ -41,7 +41,7 @@ android:marqueeRepeatLimit="marquee_forever" android:maxLines="1" android:textColor="?android:attr/textColorPrimary" - android:textSize="@dimen/text_size_medium" + android:textSize="@dimen/text_size_small" android:textStyle="bold" /> <TextView @@ -70,23 +70,23 @@ <RelativeLayout android:id="@+id/player_control" android:layout_width="match_parent" - android:layout_height="60dp" + android:layout_height="80dp" android:layout_alignParentBottom="true" android:background="?attr/overlay_background" > <ImageButton android:id="@+id/butPlay" - android:layout_width="60dp" + android:layout_width="80dp" android:layout_height="match_parent" android:layout_centerHorizontal="true" - android:layout_marginLeft="8dp" - android:layout_marginRight="8dp" + android:layout_marginLeft="12dp" + android:layout_marginRight="12dp" android:background="?attr/borderless_button" android:src="?attr/av_pause" /> <ImageButton android:id="@+id/butRev" - android:layout_width="60dp" + android:layout_width="80dp" android:layout_height="match_parent" android:layout_toLeftOf="@id/butPlay" android:background="?attr/borderless_button" @@ -94,7 +94,7 @@ <ImageButton android:id="@+id/butFF" - android:layout_width="60dp" + android:layout_width="80dp" android:layout_height="match_parent" android:layout_toRightOf="@id/butPlay" android:background="?attr/borderless_button" |