2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-07-27 18:37:33 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/root"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
2018-12-04 21:04:26 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/artistImage"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:transitionName="@string/transition_album_art" />
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.appcompat.widget.Toolbar
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/toolbar"
|
2018-12-04 21:04:26 +05:30
|
|
|
style="@style/Toolbar" />
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2018-11-13 09:00:08 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</FrameLayout>
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/contentContainer"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:overScrollMode="never">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-01-02 09:25:55 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/background"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-01-02 09:25:55 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-02 09:25:55 +05:30
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="16dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-01-02 09:25:55 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
|
|
|
android:id="@+id/artistTitle"
|
2019-02-23 23:09:02 +05:30
|
|
|
style="@style/TextAppearance.MaterialComponents.Headline6"
|
2019-01-02 09:25:55 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="2"
|
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
|
|
|
|
android:id="@+id/text"
|
2019-02-23 23:09:02 +05:30
|
|
|
style="@style/TextAppearance.MaterialComponents.Subtitle2"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-02 09:25:55 +05:30
|
|
|
android:layout_gravity="center"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:freezesText="true"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
2019-01-02 09:25:55 +05:30
|
|
|
|
|
|
|
<include layout="@layout/activity_artist_content" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-04-05 11:22:42 +05:30
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/status_bar_padding" />
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="72dp"
|
|
|
|
android:background="@drawable/shadow_down_strong" />
|
2019-04-05 11:22:42 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|