<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:id="@+id/base_root"
|
android:background="#C3BFB3"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<View
|
android:id="@+id/bg_title"
|
android:layout_width="match_parent"
|
android:layout_height="89dp"
|
app:layout_constraintTop_toTopOf="parent"
|
android:background="@drawable/bg_gradient_title"/>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:id="@+id/root_layout"
|
android:orientation="vertical"
|
android:layout_height="match_parent">
|
<cn.sinata.xldutils.view.TitleBar
|
android:id="@+id/titleBar"
|
android:focusableInTouchMode="true"
|
android:focusable="true"
|
android:layout_width="match_parent"
|
android:layout_marginTop="10dp"
|
android:layout_marginBottom="14dp"
|
android:layout_height="62dp"/>
|
<LinearLayout
|
android:id="@+id/ll_container"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"/>
|
</LinearLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|