wjc
2025-04-09 87cd5df70918e6ba1af849c5f026d3719bfdb1ac
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
<?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:id="@+id/item_parent_cl"
    android:layout_width="match_parent"
    android:layout_height="@dimen/dp_74">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="@dimen/dp_64"
        android:layout_marginStart="@dimen/dp_13"
        android:layout_marginTop="10dp"
        android:layout_marginEnd="@dimen/dp_13"
        android:background="@drawable/bj_ff1c1c1e"
        android:gravity="center"
        android:orientation="horizontal"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
        <TextView
            android:id="@+id/house_name_tv"
            android:layout_width="0dp"
            android:layout_height="@dimen/dp_23"
            android:layout_weight="1"
            android:ellipsize="end"
            android:paddingStart="@dimen/dp_16"
            android:paddingEnd="@dimen/dp_16"
            android:singleLine="true"
            android:text="@string/power_station"
            android:textColor="@color/text_FFACACAC"
            android:textSize="@dimen/text_14" />
 
        <ImageView
            android:id="@+id/house_move_iv"
            android:layout_width="@dimen/dp_26"
            android:layout_height="@dimen/dp_26"
            android:layout_marginEnd="@dimen/dp_21"
            android:src="@drawable/move_c_house" />
 
    </LinearLayout>
 
 
</androidx.constraintlayout.widget.ConstraintLayout>