34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.cardview.widget.CardView 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="wrap_content"
|
|
app:cardCornerRadius="0dp"
|
|
app:cardElevation="0dp">
|
|
<RelativeLayout
|
|
android:background="@color/bg_FAFAFC"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp85">
|
|
<ImageView
|
|
android:id="@+id/iv_back"
|
|
android:background="@drawable/icon_back"
|
|
android:layout_width="@dimen/dp85"
|
|
android:layout_height="@dimen/dp85"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp36"
|
|
android:textColor="@color/bg_596F80"
|
|
android:gravity="center"
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"/>
|
|
<ImageView
|
|
android:id="@+id/im_primary_right"
|
|
android:layout_width="@dimen/dp85"
|
|
android:layout_height="@dimen/dp85"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"/>
|
|
</RelativeLayout>
|
|
</androidx.cardview.widget.CardView>
|