|
@@ -0,0 +1,36 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="62dp"
|
|
|
+ android:background="@color/xui_config_color_white"
|
|
|
+>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <com.xuexiang.xui.widget.actionbar.TitleBar
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="#83cbc5"
|
|
|
+ app:tb_barHeight="65dp"
|
|
|
+ app:tb_dividerColor="@color/xui_config_color_red"
|
|
|
+ app:tb_leftText="回退"
|
|
|
+ app:tb_sideTextPadding="20dp"
|
|
|
+ app:tb_actionPadding="20dp"
|
|
|
+ app:tb_titleText="这是一个Title" tools:ignore="MissingConstraints"
|
|
|
+ app:tb_actionTextColor="@color/xui_config_color_red"
|
|
|
+ app:tb_useThemeColor="false"
|
|
|
+ app:tb_centerGravity="left"
|
|
|
+ app:tb_leftImageResource="@drawable/icon_back_black"
|
|
|
+ />
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|