<?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="wrap_content"
|
android:id="@+id/tv_name"
|
app:layout_constraintTop_toTopOf="parent"
|
android:paddingVertical="9dp"
|
android:textSize="14sp"
|
android:gravity="center"
|
android:text="13:00-13:30"/>
|
<View
|
android:layout_width="1dp"
|
android:layout_height="0dp"
|
app:layout_constraintTop_toTopOf="@id/tv_name"
|
app:layout_constraintBottom_toBottomOf="@id/tv_name"
|
app:layout_constraintEnd_toEndOf="@id/tv_name"
|
android:background="@color/white"
|
android:id="@+id/divider" />
|
</androidx.constraintlayout.widget.ConstraintLayout>
|