endian11
2021-01-19 b2fe9c4f073523284c671bf8895a8412cd269518
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
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:gravity="center"
    android:layout_height="match_parent"
 
    >
 
<safeluck.drive.evaluation.customview.CircleImageView
        style="@style/home_fragment_icon"
        android:id="@+id/circle_1"
        android:src="@drawable/setting"
        />
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="设置"
        android:textColor="#ffffffff"
        android:textSize="39sp"
        android:id="@+id/tv_des"
        android:layout_toRightOf="@+id/circle_1"
        />
<View
    android:layout_width="26dp"
    android:layout_height="2dp"
    android:background="@drawable/sys_line_bg"
    android:layout_below="@+id/tv_des"
    android:layout_toRightOf="@+id/circle_1"
    android:layout_marginTop="10dp"
    android:id="@+id/view_line"
    android:layout_marginBottom="10dp"/>
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="SHE ZHI"
        android:textColor="#ff64738e"
        android:id="@+id/tv_des_t"
        android:textSize="13sp"
        android:shadowDx="0"
        android:shadowDy="1"
        android:shadowRadius="3.0"
        android:shadowColor="#ff181a26"
        android:layout_below="@+id/view_line"
        android:layout_toRightOf="@id/circle_1"
        />
</RelativeLayout>