RetroMusicPlayer/app/src/main/res/layout/player_time.xml

37 lines
1.4 KiB
XML
Raw Normal View History

2018-12-05 18:01:56 +05:30
<?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">
2019-07-31 14:39:29 +05:30
<androidx.appcompat.widget.AppCompatTextView
2018-12-05 18:01:56 +05:30
android:id="@+id/songCurrentProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:paddingStart="8dp"
android:paddingEnd="8dp"
2019-07-31 14:39:29 +05:30
android:textAppearance="@style/TextAppearance.MaterialComponents.Overline"
2018-12-05 18:01:56 +05:30
android:textColor="?android:attr/textColorSecondary"
android:textStyle="bold"
tools:text="22.00" />
2019-07-31 14:39:29 +05:30
<androidx.appcompat.widget.AppCompatTextView
2018-12-05 18:01:56 +05:30
android:id="@+id/songTotalTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0"
android:paddingStart="8dp"
android:paddingEnd="8dp"
2019-07-31 14:39:29 +05:30
android:textAppearance="@style/TextAppearance.MaterialComponents.Overline"
2018-12-05 18:01:56 +05:30
android:textColor="?android:attr/textColorSecondary"
android:textStyle="bold"
tools:text="22.00" />
</LinearLayout>