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"
|
2022-08-09 13:29:04 -03:00
|
|
|
tools:viewBindingIgnore="true"
|
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"
|
2021-08-24 14:34:35 +02:00
|
|
|
android:background="@android:color/transparent">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/title"
|
2022-05-26 17:32:52 -03:00
|
|
|
android:textAppearance="@style/Signal.Text.TitleLarge"
|
2021-08-24 14:34:35 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical|start"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:maxLines="1"
|
|
|
|
tools:text="Avatar name" />
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
2020-05-28 16:05:34 -03:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|