lmw
5 天以前 855a7e18a795f0db2453a19e3e8f26ba2ff553b4
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <androidx.recyclerview.widget.RecyclerView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:id="@+id/rv_address"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toTopOf="@id/tv_add"
        android:layout_marginTop="30dp"
        android:layout_marginHorizontal="239dp" />
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/style_btn_action"
        android:text="添加地址"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_marginBottom="30dp"
        android:layout_marginHorizontal="350dp"
        android:id="@+id/tv_add"
        android:visibility="gone"/>
</androidx.constraintlayout.widget.ConstraintLayout>