12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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"
- xmlns:tools="http://schemas.android.com/tools">
- <View
- android:visibility="gone"
- android:id="@+id/view_indicator"
- android:layout_marginBottom="1dp"
- app:layout_constraintBottom_toBottomOf="@+id/tv_text"
- android:background="@drawable/shape_2dc7aa_to_transparent"
- app:layout_constraintRight_toRightOf="@+id/tv_text"
- app:layout_constraintLeft_toLeftOf="@+id/tv_text"
- android:layout_width="0dp"
- android:layout_height="6dp"/>
- <TextView
- tools:text="VIP定制课"
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- android:minWidth="32dp"
- android:gravity="center"
- android:includeFontPadding="false"
- android:textSize="@dimen/sp_15"
- android:textColor="@color/color_666666"
- android:id="@+id/tv_text"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- <View
- app:layout_constraintRight_toRightOf="parent"
- app:layout_constraintLeft_toLeftOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- android:layout_width="74dp"
- android:layout_height="1dp"/>
- </androidx.constraintlayout.widget.ConstraintLayout>
|