mirror of
https://github.com/shaulascr/ecommerce_serang.git
synced 2025-08-16 03:47:24 +00:00
58 lines
2.3 KiB
XML
58 lines
2.3 KiB
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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:background="@drawable/bg_header"
|
|
android:paddingHorizontal="@dimen/horizontal_safe_area"
|
|
android:paddingVertical="@dimen/vertical_safe_area">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:contentInsetStart="0dp"
|
|
app:contentInsetStartWithNavigation="0dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/header_left_icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="start"
|
|
android:layout_marginEnd="10dp"
|
|
android:src="@drawable/ic_arrow_back" />
|
|
|
|
<TextView
|
|
android:id="@+id/header_title"
|
|
style="@style/title_large"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Judul" />
|
|
|
|
<ImageView
|
|
android:id="@+id/header_right_icon"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_gravity="end"
|
|
android:src="@drawable/ic_more_vertical"
|
|
android:visibility="gone" />
|
|
|
|
<TextView
|
|
android:id="@+id/header_right_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="end"
|
|
android:text="Tambah"
|
|
style="@style/label_large_prominent"
|
|
android:textColor="@color/blue_500"
|
|
android:visibility="gone"/>
|
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
</RelativeLayout> |