You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/navigation_header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageView_logo"
|
|
android:layout_width="@dimen/nav_header_logo_size"
|
|
android:layout_height="@dimen/nav_header_logo_size"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_marginStart="28dp"
|
|
android:layout_marginTop="24dp"
|
|
android:layout_marginBottom="24dp"
|
|
android:contentDescription="@string/app_name"
|
|
android:src="@drawable/ic_totoro" />
|
|
|
|
<TextView
|
|
android:id="@+id/textView_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignTop="@id/imageView_logo"
|
|
android:layout_alignBottom="@id/imageView_logo"
|
|
android:layout_marginStart="18dp"
|
|
android:layout_toEndOf="@id/imageView_logo"
|
|
android:gravity="center_vertical"
|
|
android:singleLine="true"
|
|
android:text="@string/app_name"
|
|
android:textAppearance="?attr/textAppearanceTitleMedium" />
|
|
|
|
<com.google.android.material.divider.MaterialDivider
|
|
android:id="@+id/divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_below="@id/imageView_logo"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_marginHorizontal="28dp" />
|
|
|
|
</RelativeLayout> |