lmw
2024-07-09 b13afc751dbbce24753d008f1f87d2c5e133a4ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?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>