wjc
7 天以前 0770fc4f03196a27e8f4c899a44da63bb1a683e2
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
<?xml version="1.0" encoding="utf-8"?>
<com.hdl.photovoltaic.widget.SwipeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/item_parent_sl"
    android:layout_width="match_parent"
    android:layout_height="@dimen/dp_62">
 
    <LinearLayout
        android:layout_width="@dimen/dp_68"
        android:layout_height="match_parent"
        android:background="@color/text_FF000000">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_52"
            android:layout_marginTop="@dimen/dp_10"
            android:gravity="center"
            >
 
            <ImageView
                android:id="@+id/del_c_home_iv"
                android:layout_width="@dimen/dp_36"
                android:layout_height="@dimen/dp_36"
                android:src="@drawable/del_home" />
        </LinearLayout>
    </LinearLayout>
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/item_parent_cl"
            android:layout_width="match_parent"
            android:layout_height="@dimen/dp_52"
            android:layout_marginTop="@dimen/dp_10"
            android:background="@color/text_FF1C1C1E">
 
            <TextView
                android:id="@+id/house_name_tv"
                android:layout_width="0dp"
                android:layout_height="@dimen/dp_23"
                android:layout_marginStart="@dimen/dp_16"
                android:layout_marginEnd="@dimen/dp_16"
                android:ellipsize="end"
                android:singleLine="true"
                android:text="@string/power_station"
                android:textColor="@color/text_FFACACAC"
                android:textSize="@dimen/text_14"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toStartOf="@+id/house_Image_ll"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent" />
 
            <LinearLayout
                android:id="@+id/house_Image_ll"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"
                android:gravity="center_vertical"
                android:orientation="horizontal"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintTop_toTopOf="parent">
 
                <ImageView
                    android:id="@+id/house_select_iv"
                    android:layout_width="@dimen/dp_39"
                    android:layout_height="@dimen/dp_39"
                    android:layout_marginEnd="@dimen/dp_16"
                    android:visibility="gone" />
            </LinearLayout>
 
            <!--        <View-->
            <!--            android:layout_width="0dp"-->
            <!--            android:layout_height="0.5dp"-->
            <!--            android:layout_marginBottom="0.5dp"-->
            <!--            android:background="@color/text_1AFFFFFF"-->
            <!--            app:layout_constraintBottom_toBottomOf="parent"-->
            <!--            app:layout_constraintEnd_toEndOf="parent"-->
            <!--            app:layout_constraintStart_toStartOf="parent"-->
 
            <!--            />-->
 
        </androidx.constraintlayout.widget.ConstraintLayout>
    </LinearLayout>
 
</com.hdl.photovoltaic.widget.SwipeLayout>