20 lines
672 B
XML
20 lines
672 B
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?attr/colorToolbar"
|
|
android:elevation="2dp"
|
|
android:padding="32dp">
|
|
|
|
<ImageView
|
|
android:layout_width="56dp"
|
|
android:layout_height="56dp"
|
|
android:layout_gravity="center"
|
|
app:srcCompat="@drawable/ic_tachi"
|
|
app:tint="?attr/colorOnToolbar"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
</FrameLayout>
|