RetroMusicPlayer/app/src/main/res/layout-land/activity_artist_details.xml

121 lines
4.8 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2019-11-08 21:08:34 +05:30
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-06-24 01:44:27 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 18:37:33 +05:30
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2019-11-08 21:08:34 +05:30
android:layout_height="match_parent"
2019-12-01 20:57:01 +05:30
android:background="?attr/colorSurface"
2019-11-08 21:08:34 +05:30
android:orientation="vertical"
tools:ignore="UnusedAttribute">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/status_bar" />
</FrameLayout>
2018-07-27 18:37:33 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
2019-11-08 21:08:34 +05:30
<LinearLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2019-11-08 21:08:34 +05:30
android:layout_weight="1"
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.appbar.MaterialToolbar
android:id="@+id/toolbar"
style="@style/Toolbar"
app:navigationIcon="@drawable/ic_keyboard_backspace_black_24dp" />
2018-11-05 19:23:07 +05:30
<ViewStub
android:id="@+id/cab_stub"
android:layout_width="match_parent"
android:layout_height="48dp" />
</FrameLayout>
2019-12-22 23:20:25 +05:30
2019-11-08 21:08:34 +05:30
<com.google.android.material.card.MaterialCardView
2020-01-02 09:23:43 +05:30
android:id="@+id/artistCoverContainer"
2019-11-08 21:08:34 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="16dp"
android:transitionName="@string/transition_artist_image"
app:cardCornerRadius="24dp"
app:cardElevation="8dp">
2018-11-13 09:00:08 +05:30
2019-11-08 21:08:34 +05:30
<androidx.appcompat.widget.AppCompatImageView
2020-01-02 09:23:43 +05:30
android:id="@+id/image"
2019-11-08 21:08:34 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
tools:srcCompat="@tools:sample/backgrounds/scenic[5]" />
</com.google.android.material.card.MaterialCardView>
</LinearLayout>
2018-07-27 18:37:33 +05:30
2018-08-30 14:59:30 +05:30
<androidx.core.widget.NestedScrollView
2020-01-05 23:52:21 +05:30
android:id="@+id/container"
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">
2019-11-08 21:08:34 +05:30
<LinearLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-11-08 21:08:34 +05:30
android:orientation="vertical">
2018-07-27 18:37:33 +05:30
2019-01-02 09:25:55 +05:30
<LinearLayout
2019-11-08 21:08:34 +05:30
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-11-08 21:08:34 +05:30
android:orientation="vertical"
android:padding="16dp">
2018-07-27 18:37:33 +05:30
2019-11-08 21:08:34 +05:30
<com.google.android.material.textview.MaterialTextView
android:id="@+id/artistTitle"
2019-01-02 09:25:55 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-11-08 21:08:34 +05:30
android:maxLines="2"
2020-01-28 22:30:28 +05:30
android:textColor="?android:attr/textColorPrimary"
2020-02-17 20:38:20 +05:30
android:textAppearance="@style/TextViewHeadline5"
2019-11-08 21:08:34 +05:30
android:textStyle="bold"
tools:ignore="MissingPrefix"
tools:text="Title" />
<com.google.android.material.textview.MaterialTextView
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="4dp"
android:textAppearance="@style/TextViewSubtitle2"
2019-12-10 23:06:20 +05:30
android:textColor="?android:attr/textColorSecondary"
2019-11-08 21:08:34 +05:30
tools:ignore="MissingPrefix"
tools:text="Title" />
2019-01-02 09:25:55 +05:30
2019-11-08 21:08:34 +05:30
</LinearLayout>
2019-11-08 21:08:34 +05:30
<include layout="@layout/activity_artist_content" />
2019-06-24 01:44:27 +05:30
</LinearLayout>
2019-11-08 21:08:34 +05:30
<View
android:layout_width="match_parent"
android:layout_height="@dimen/status_bar_padding" />
</LinearLayout>
2018-08-30 14:59:30 +05:30
</androidx.core.widget.NestedScrollView>
2018-07-27 18:37:33 +05:30
</LinearLayout>
2019-11-08 21:08:34 +05:30
</LinearLayout>