<?xml version="1.0" encoding="utf-8"?>
|
<layout xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<data>
|
<variable
|
name="viewModel"
|
type="com.application.zhangshi_app_android.module.function.FunctionFragmentViewModel" />
|
</data>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
|
<com.hjq.bar.TitleBar
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_55"
|
app:layout_constraintTop_toTopOf="parent"
|
android:background="@color/color_title_background"
|
android:paddingHorizontal="@dimen/dp_16"
|
app:leftIcon="@drawable/ic_menu"
|
app:leftTitle="功能"
|
app:leftTitleSize="@dimen/sp_20"
|
app:leftTitleColor="@color/white"
|
app:leftIconWidth="@dimen/dp_24"
|
app:leftIconHeight="@dimen/dp_24"
|
app:leftIconPadding="@dimen/dp_32"
|
app:leftHorizontalPadding="@dimen/dp_0"
|
app:rightIcon="@null"
|
>
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="end|center_vertical"
|
android:orientation="horizontal" >
|
|
<ImageView
|
android:layout_width="@dimen/dp_24"
|
android:layout_height="@dimen/dp_24"
|
android:background="@drawable/ic_search"
|
/>
|
|
<ImageView
|
android:layout_width="@dimen/dp_24"
|
android:layout_height="@dimen/dp_24"
|
android:background="@drawable/ic_operate"
|
android:layout_marginStart="@dimen/dp_16"
|
/>
|
|
</LinearLayout>
|
</com.hjq.bar.TitleBar>
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
</layout>
|