mirror of
https://github.com/samsonjs/media.git
synced 2026-04-15 12:55:46 +00:00
Including strings, icon, and button. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=164126101
59 lines
2.3 KiB
XML
59 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2016 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<resources>
|
|
|
|
<style name="ExoMediaButton">
|
|
<item name="android:background">@null</item>
|
|
<item name="android:layout_width">@dimen/exo_media_button_width</item>
|
|
<item name="android:layout_height">@dimen/exo_media_button_height</item>
|
|
</style>
|
|
|
|
<style name="ExoMediaButton.Previous">
|
|
<item name="android:src">@drawable/exo_controls_previous</item>
|
|
<item name="android:contentDescription">@string/exo_controls_previous_description</item>
|
|
</style>
|
|
|
|
<style name="ExoMediaButton.Next">
|
|
<item name="android:src">@drawable/exo_controls_next</item>
|
|
<item name="android:contentDescription">@string/exo_controls_next_description</item>
|
|
</style>
|
|
|
|
<style name="ExoMediaButton.FastForward">
|
|
<item name="android:src">@drawable/exo_controls_fastforward</item>
|
|
<item name="android:contentDescription">@string/exo_controls_fastforward_description</item>
|
|
</style>
|
|
|
|
<style name="ExoMediaButton.Rewind">
|
|
<item name="android:src">@drawable/exo_controls_rewind</item>
|
|
<item name="android:contentDescription">@string/exo_controls_rewind_description</item>
|
|
</style>
|
|
|
|
<style name="ExoMediaButton.Play">
|
|
<item name="android:src">@drawable/exo_controls_play</item>
|
|
<item name="android:contentDescription">@string/exo_controls_play_description</item>
|
|
</style>
|
|
|
|
<style name="ExoMediaButton.Pause">
|
|
<item name="android:src">@drawable/exo_controls_pause</item>
|
|
<item name="android:contentDescription">@string/exo_controls_pause_description</item>
|
|
</style>
|
|
|
|
<style name="ExoMediaButton.Shuffle">
|
|
<item name="android:src">@drawable/exo_controls_shuffle</item>
|
|
<item name="android:contentDescription">@string/exo_controls_shuffle_description</item>
|
|
</style>
|
|
|
|
</resources>
|