PlayerAndroid/app/src/main/res/layout/fragment_simple_controls_fr...

67 lines
2.7 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?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="match_parent"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
2018-12-05 12:13:50 +00:00
android:layout_height="wrap_content"
2018-07-27 13:07:33 +00:00
android:layout_weight="1">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:orientation="vertical"
2018-11-05 13:53:07 +00:00
android:paddingStart="16dp"
android:paddingEnd="16dp">
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-07-27 13:07:33 +00:00
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:textAppearance="@style/Base.TextAppearance.AppCompat.Title"
android:textColor="?android:attr/textColorPrimary"
2018-12-05 12:13:50 +00:00
android:textStyle="bold"
2018-07-27 13:07:33 +00:00
tools:ignore="MissingPrefix"
tools:text="Title" />
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2018-07-27 13:07:33 +00:00
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:ellipsize="end"
android:gravity="center"
android:maxLines="1"
android:paddingTop="4dp"
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
android:textColor="?android:attr/textColorSecondary"
tools:text="Text" />
2018-11-05 13:53:07 +00:00
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
2018-12-05 12:13:50 +00:00
android:id="@+id/songCurrentProgress"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:paddingTop="4dp"
2019-07-31 09:09:29 +00:00
android:textAppearance="@style/TextAppearance.MaterialComponents.Overline"
2018-07-27 13:07:33 +00:00
android:textColor="?android:attr/textColorSecondary"
android:textSize="12sp"
android:textStyle="bold"
tools:text="22.00/ 33.00" />
</LinearLayout>
</FrameLayout>
2018-12-05 12:13:50 +00:00
<include layout="@layout/media_button" />
2018-07-27 13:07:33 +00:00
2018-12-05 12:13:50 +00:00
<include layout="@layout/volume_controls" />
2018-07-27 13:07:33 +00:00
</LinearLayout>