37 lines
No EOL
1.2 KiB
XML
37 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:paddingStart="16dp"
|
|
android:paddingEnd="16dp"
|
|
tools:showIn="@layout/fragment_player_playback_controls">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/songCurrentProgress"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:paddingStart="8dp"
|
|
android:paddingEnd="8dp"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
tools:text="22.00" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/songTotalTime"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:paddingStart="8dp"
|
|
android:paddingEnd="8dp"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
tools:text="22.00" />
|
|
</LinearLayout> |