<?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"
|
android:paddingHorizontal="16dp"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<TextView
|
android:id="@+id/tv_course"
|
style="@style/style_item_pay"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
app:layout_constraintTop_toTopOf="parent"
|
android:gravity="center_vertical"
|
android:drawableStart="@mipmap/keshi"
|
android:drawableEnd="@drawable/selector_select_pay"
|
android:text="课时支付" />
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
app:layout_constraintTop_toBottomOf="@id/tv_course"
|
android:background="@color/dividing_line_color" />
|
</androidx.constraintlayout.widget.ConstraintLayout>
|