mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Merge pull request #914 from cemrich:366-forward-time-wrong
PiperOrigin-RevId: 592871532
(cherry picked from commit 966b5178b6)
This commit is contained in:
parent
1da24b2875
commit
b68173aae4
2 changed files with 7 additions and 0 deletions
|
|
@ -64,6 +64,9 @@
|
||||||
* Fix issue where forward and rewind buttons are not visible when used
|
* Fix issue where forward and rewind buttons are not visible when used
|
||||||
with Material Design in a BottomSheetDialogFragment
|
with Material Design in a BottomSheetDialogFragment
|
||||||
([#511](https://github.com/androidx/media/issues/511)).
|
([#511](https://github.com/androidx/media/issues/511)).
|
||||||
|
* Fix issue where the numbers in the fast forward button of the
|
||||||
|
`PlayerControlView` were misaligned
|
||||||
|
([#547](https://github.com/androidx/media/issues/547)).
|
||||||
* Downloads:
|
* Downloads:
|
||||||
* OkHttp Extension:
|
* OkHttp Extension:
|
||||||
* Cronet Extension:
|
* Cronet Extension:
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,8 @@
|
||||||
<style name="ExoStyledControls.Button.Center.FfwdWithAmount">
|
<style name="ExoStyledControls.Button.Center.FfwdWithAmount">
|
||||||
<item name="android:foreground">@drawable/exo_styled_controls_fastforward</item>
|
<item name="android:foreground">@drawable/exo_styled_controls_fastforward</item>
|
||||||
<item name="android:gravity">center|bottom</item>
|
<item name="android:gravity">center|bottom</item>
|
||||||
|
<item name="android:paddingRight">0dp</item>
|
||||||
|
<item name="android:paddingLeft">0dp</item>
|
||||||
<item name="android:paddingBottom">@dimen/exo_icon_padding_bottom</item>
|
<item name="android:paddingBottom">@dimen/exo_icon_padding_bottom</item>
|
||||||
<item name="android:textStyle">bold</item>
|
<item name="android:textStyle">bold</item>
|
||||||
<item name="android:textSize">@dimen/exo_icon_text_size</item>
|
<item name="android:textSize">@dimen/exo_icon_text_size</item>
|
||||||
|
|
@ -62,6 +64,8 @@
|
||||||
<style name="ExoStyledControls.Button.Center.RewWithAmount">
|
<style name="ExoStyledControls.Button.Center.RewWithAmount">
|
||||||
<item name="android:foreground">@drawable/exo_styled_controls_rewind</item>
|
<item name="android:foreground">@drawable/exo_styled_controls_rewind</item>
|
||||||
<item name="android:gravity">center|bottom</item>
|
<item name="android:gravity">center|bottom</item>
|
||||||
|
<item name="android:paddingRight">0dp</item>
|
||||||
|
<item name="android:paddingLeft">0dp</item>
|
||||||
<item name="android:paddingBottom">@dimen/exo_icon_padding_bottom</item>
|
<item name="android:paddingBottom">@dimen/exo_icon_padding_bottom</item>
|
||||||
<item name="android:textStyle">bold</item>
|
<item name="android:textStyle">bold</item>
|
||||||
<item name="android:textSize">@dimen/exo_icon_text_size</item>
|
<item name="android:textSize">@dimen/exo_icon_text_size</item>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue