<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
|
<TextView
|
android:id="@+id/tv_name"
|
style="@style/style_common_text"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingHorizontal="14dp"
|
android:paddingVertical="10dp"
|
android:text="名字"
|
app:layout_constraintTop_toTopOf="parent" />
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
app:layout_constraintTop_toBottomOf="@id/tv_name"
|
android:background="@color/dividing_line_color"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|