<?xml version="1.0" encoding="utf-8"?>
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:scrollbars="none"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
<androidx.constraintlayout.widget.ConstraintLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/bg_white_10dp"
|
android:elevation="1dp"
|
android:paddingBottom="10dp"
|
android:layout_marginHorizontal="14dp"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginTop="5dp">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_change"
|
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
android:layout_marginStart="14dp"
|
android:layout_marginTop="10dp"
|
android:text="星座运势"
|
android:textSize="14sp"
|
android:textColor="@color/textColor"
|
android:textStyle="bold"
|
android:drawablePadding="6dp"
|
android:drawableEnd="@mipmap/ic_switch"/>
|
<TextView
|
android:id="@+id/tv_time"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
android:layout_margin="11dp"
|
android:textSize="12sp"/>
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/rv_luck"
|
android:layout_width="match_parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toBottomOf="@id/tv_change"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:layout_marginTop="17dp"
|
android:layout_marginHorizontal="14dp"
|
android:background="@drawable/bg_white_10dp"
|
android:layout_marginBottom="20dp"
|
android:elevation="1dp">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="今日概述"
|
android:textStyle="bold"
|
android:textSize="16sp"
|
android:id="@+id/tv_1"
|
android:textColor="@color/textColor"
|
android:layout_marginStart="14dp"
|
android:layout_marginTop="12dp"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/tv_tip"
|
android:layout_marginTop="5dp"
|
android:layout_marginBottom="17dp"
|
android:layout_marginHorizontal="14dp"
|
android:textSize="12sp"/>
|
</LinearLayout>
|
</LinearLayout>
|
|
|
</ScrollView>
|