fg_login_userlist.xml
2.71 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="1355dp"
android:layout_height="882dp" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.00"
app:layout_constraintHorizontal_bias="0.00" >
<ListView
android:id="@+id/listView_user"
android:layout_width="match_parent"
android:layout_height="751dp"
android:fadingEdge="none"
android:cacheColorHint="#00000000"
android:listSelector="#00000000"
android:scrollbars="none"
android:fadeScrollbars="false"
android:divider="@null"
android:visibility="visible" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:orientation="horizontal"
android:gravity="center"
android:layout_centerInParent="true"
android:layout_below="@+id/listView_user" >
<com.sw.laryngoscope.widget.DrawableTextView
android:id="@+id/img_edit"
android:layout_width="131dp"
android:layout_height="match_parent"
android:background="@drawable/shape_txt_set_style_12"
android:drawableLeft="@mipmap/img_pen_nib" />
<com.sw.laryngoscope.widget.DrawableTextView
android:id="@+id/img_user_switch1"
android:layout_width="131dp"
android:layout_height="33dp"
android:layout_marginLeft="309dp"
android:drawableLeft="@mipmap/img_user_switch1"
android:background="@drawable/shape_txt_set_style_12" />
<com.sw.laryngoscope.widget.DrawableTextView
android:id="@+id/img_user_del"
android:layout_width="131dp"
android:layout_height="33dp"
android:layout_marginLeft="309dp"
android:drawableLeft="@mipmap/img_user_del"
android:background="@drawable/shape_txt_set_style_12" />
</LinearLayout>
</RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>