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"
|
2019-09-28 23:22:49 +05:30
|
|
|
android:paddingEnd="16dp">
|
2018-12-05 18:01:56 +05:30
|
|
|
|
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
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-09-02 20:21:53 +05:30
|
|
|
android:textAppearance="@style/TextViewOverline"
|
2018-12-05 18:01:56 +05:30
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="22.00" />
|
|
|
|
|
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
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-09-02 20:21:53 +05:30
|
|
|
android:textAppearance="@style/TextViewOverline"
|
2018-12-05 18:01:56 +05:30
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="22.00" />
|
|
|
|
</LinearLayout>
|