86 lines
No EOL
3 KiB
XML
86 lines
No EOL
3 KiB
XML
<FrameLayout 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">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/header_image_height"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/default_artist_image"
|
|
android:transitionName="@string/transition_artist_image"
|
|
tools:ignore="ContentDescription,UnusedAttribute" />
|
|
|
|
<View
|
|
android:id="@+id/list_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?android:attr/colorBackground" />
|
|
|
|
<com.github.ksoichiro.android.observablescrollview.ObservableListView
|
|
android:id="@+id/list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
android:divider="@null"
|
|
android:dividerHeight="0dp"
|
|
android:scrollbars="none" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/title_view_height"
|
|
android:height="@dimen/title_view_height"
|
|
android:background="?default_bar_color"
|
|
android:elevation="@dimen/toolbar_elevation"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="72dp"
|
|
android:paddingRight="72dp"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
|
tools:ignore="UnusedAttribute" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@android:color/transparent" />
|
|
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/shadow_statusbar_actionbar" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:elevation="@dimen/toolbar_elevation"
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar"
|
|
android:background="@android:color/transparent" />
|
|
|
|
<ViewStub
|
|
android:id="@+id/cab_stub"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize" />
|
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |