30 lines
1010 B
XML
30 lines
1010 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/toolbar_icon"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:src="@drawable/ic_launcher"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="6dp"
|
|
android:contentDescription="@string/toolbar_icon_description" />
|
|
|
|
<TextView
|
|
android:id="@+id/toolbar_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#ffffff"
|
|
android:textSize="18sp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toEndOf="@id/toolbar_icon"
|
|
android:layout_marginStart="16dp" />
|
|
|
|
</RelativeLayout>
|
|
|