mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-21 01:25:19 +01:00
43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?><!--
|
||
|
~ Copyright (c) 2019 Hemanth Savarala.
|
||
|
~
|
||
|
~ Licensed under the GNU General Public License v3
|
||
|
~
|
||
|
~ This is free software: you can redistribute it and/or modify it under
|
||
|
~ the terms of the GNU General Public License as published by
|
||
|
~ the Free Software Foundation either version 3 of the License, or (at your option) any later version.
|
||
|
~
|
||
|
~ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
||
|
~ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
~ See the GNU General Public License for more details.
|
||
|
-->
|
||
|
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingHorizontal="16dp"
|
||
|
android:paddingVertical="16dp">
|
||
|
|
||
|
<com.google.android.material.slider.Slider
|
||
|
android:id="@+id/slider"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="3"
|
||
|
android:stepSize="100"
|
||
|
android:valueFrom="0"
|
||
|
android:valueTo="1000"
|
||
|
app:labelBehavior="gone" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/duration"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:layout_weight="1"
|
||
|
android:gravity="center"
|
||
|
tools:Text="100ms" />
|
||
|
</LinearLayout>
|