riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/shap_stroke_bottom"
    android:descendantFocusability="blocksDescendants"
    >
 
    <ImageView
        android:id="@+id/img_selectedStatus"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:focusable="false"
        android:visibility="gone"
        android:src="@drawable/icon_sel_blue" />
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:padding="@dimen/dimen8"
        android:paddingLeft="@dimen/fab_margin"
        android:paddingRight="@dimen/fab_margin"
        android:layout_alignParentTop="true"
        android:layout_alignParentStart="true">
 
        <TextView
            android:id="@+id/tv_no"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:padding="@dimen/dimen4" />
 
        <TextView
            android:id="@+id/tv_scenseName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_margin="@dimen/dimen4"
            android:layout_marginLeft="@dimen/fab_margin"
            android:layout_toLeftOf="@+id/ll_monitorNum"
            android:layout_toRightOf="@+id/tv_no"
            android:textColor="@color/colorPrimary"
            android:layout_marginEnd="@dimen/dimen8"
            android:textSize="@dimen/textSize_14"
            android:typeface="monospace" />
 
        <LinearLayout
            android:id="@+id/ll_monitorNum"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:gravity="center_vertical"
            android:orientation="horizontal"
            >
 
            <ImageView
                android:id="@+id/img_minus"
                android:layout_height="wrap_content"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:focusable="false"
                android:padding="@dimen/dimen4"
                android:src="@drawable/ic_minus" />
 
            <TextView
                android:id="@+id/tv_monitorNum"
                android:layout_height="wrap_content"
                android:layout_width="0dp"
                android:layout_gravity="center"
                android:gravity="center"
                android:paddingRight="@dimen/fab_margin"
                android:layout_weight="1"
                />
 
            <ImageView
                android:id="@+id/img_plus"
                android:layout_height="wrap_content"
                android:layout_width="0dp"
                android:layout_weight="1"
                android:focusable="false"
                android:padding="@dimen/dimen4"
                android:src="@drawable/ic_plus"
                android:contentDescription="@string/app_name"
                />
 
        </LinearLayout>
 
    </RelativeLayout>
 
</RelativeLayout>