2020-05-28 16:05:34 -03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-06-24 17:18:02 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-05-28 16:05:34 -03:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="@color/core_grey_95">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/avatar"
|
|
|
|
android:layout_width="match_parent"
|
2020-06-24 17:18:02 -03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:transitionName="avatar"
|
2020-08-12 13:00:48 -04:00
|
|
|
tools:src="@tools:sample/avatars" />
|
2020-05-28 16:05:34 -03:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:id="@+id/toolbar_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@color/media_preview_bar_background"
|
|
|
|
app:elevation="0dp">
|
|
|
|
|
2020-08-12 13:00:48 -04:00
|
|
|
<View
|
|
|
|
android:id="@+id/toolbar_cutout_spacer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2020-05-28 16:05:34 -03:00
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="@android:color/transparent" />
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|