<?xml version="1.0" encoding="utf-8"?>
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<data>
|
|
</data>
|
|
<androidx.cardview.widget.CardView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
app:cardBackgroundColor="#FFFFFCFC"
|
app:cardCornerRadius="5dp"
|
android:layout_marginHorizontal="45dp"
|
android:layout_marginVertical="10dp"
|
>
|
|
<ImageView
|
android:id="@+id/iv_dialog_close"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="15dp"
|
android:layout_marginEnd="15dp"
|
android:layout_gravity="end"
|
android:background="@drawable/ic_dialog_close" />
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginBottom="20dp"
|
android:layout_marginTop="40dp"
|
android:orientation="vertical"
|
android:gravity="center_horizontal">
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="请选择需要新增条目的模块"
|
android:textColor="#FF333333"
|
android:textSize="18sp"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent" />
|
|
<LinearLayout
|
android:id="@+id/layout_family_memorabilia"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp"
|
app:layout_constraintTop_toBottomOf="@id/tv_title"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintHorizontal_bias="0.4"
|
>
|
|
<ImageView
|
android:layout_width="18dp"
|
android:layout_height="18dp"
|
android:src="@drawable/ic_function_notes"
|
android:layout_gravity="center_vertical" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="家大事记"
|
android:textColor="#FF333333"
|
android:textSize="16sp"
|
android:layout_marginStart="20dp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#FFF3F3F3"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_family_memorabilia" />
|
|
<LinearLayout
|
android:id="@+id/layout_home_devices"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_family_memorabilia"
|
app:layout_constraintStart_toStartOf="@id/layout_family_memorabilia">
|
|
<ImageView
|
android:layout_width="18dp"
|
android:layout_height="18dp"
|
android:src="@drawable/ic_function_home_devices"
|
android:layout_gravity="center_vertical" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="家庭设备"
|
android:textColor="#FF333333"
|
android:textSize="16sp"
|
android:layout_marginStart="20dp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#FFF3F3F3"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_home_devices" />
|
|
<LinearLayout
|
android:id="@+id/layout_little_doctor"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_home_devices"
|
app:layout_constraintStart_toStartOf="@id/layout_family_memorabilia">
|
|
<ImageView
|
android:layout_width="18dp"
|
android:layout_height="18dp"
|
android:src="@drawable/ic_function_little_doctor"
|
android:layout_gravity="center_vertical" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="小医生"
|
android:textColor="#FF333333"
|
android:textSize="16sp"
|
android:layout_marginStart="20dp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#FFF3F3F3"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_little_doctor" />
|
|
<LinearLayout
|
android:id="@+id/layout_clean_storage"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_little_doctor"
|
app:layout_constraintStart_toStartOf="@id/layout_family_memorabilia">
|
|
<ImageView
|
android:layout_width="18dp"
|
android:layout_height="18dp"
|
android:src="@drawable/ic_function_cleaning"
|
android:layout_gravity="center_vertical" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="保洁收纳"
|
android:textColor="#FF333333"
|
android:textSize="16sp"
|
android:layout_marginStart="20dp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#FFF3F3F3"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_clean_storage" />
|
|
<LinearLayout
|
android:id="@+id/layout_income_and_expenses"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_clean_storage"
|
app:layout_constraintStart_toStartOf="@id/layout_family_memorabilia">
|
|
<ImageView
|
android:layout_width="18dp"
|
android:layout_height="18dp"
|
android:src="@drawable/ic_function_income_expense"
|
android:layout_gravity="center_vertical" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="家庭收支台账"
|
android:textColor="#FF333333"
|
android:textSize="16sp"
|
android:layout_marginStart="20dp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#FFF3F3F3"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_income_and_expenses" />
|
|
|
|
<LinearLayout
|
android:id="@+id/layout_health_care"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_income_and_expenses"
|
app:layout_constraintStart_toStartOf="@id/layout_family_memorabilia">
|
|
<ImageView
|
android:layout_width="18dp"
|
android:layout_height="18dp"
|
android:src="@drawable/ic_function_health"
|
android:layout_gravity="center_vertical" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="健康保健"
|
android:textColor="#FF333333"
|
android:textSize="16sp"
|
android:layout_marginStart="20dp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#FFF3F3F3"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_health_care" />
|
|
<LinearLayout
|
android:id="@+id/layout_tourism"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="16dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_health_care"
|
app:layout_constraintStart_toStartOf="@id/layout_family_memorabilia">
|
|
<ImageView
|
android:layout_width="18dp"
|
android:layout_height="18dp"
|
android:src="@drawable/ic_function_tour"
|
android:layout_gravity="center_vertical" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="旅游"
|
android:textColor="#FF333333"
|
android:textSize="16sp"
|
android:layout_marginStart="20dp" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#FFF3F3F3"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
app:layout_constraintTop_toBottomOf="@id/layout_tourism" />
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</androidx.cardview.widget.CardView>
|
</layout>
|