<?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="wrap_content"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:id="@+id/tv_name"
|
android:paddingHorizontal="14dp"
|
android:gravity="center_vertical"
|
android:text="足球运动营"
|
android:drawableEnd="@mipmap/icon_radiobutton_grey"
|
android:textColor="@color/textColor66"
|
app:layout_constraintTop_toTopOf="parent"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="@color/dividing_line_color"
|
app:layout_constraintTop_toBottomOf="@id/tv_name"
|
android:layout_marginHorizontal="13dp"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|