<?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="match_parent">
|
|
<RelativeLayout
|
android:id="@+id/sll_ll_name_rl"
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/dp_57"
|
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintTop_toTopOf="parent">
|
|
<TextView
|
android:id="@+id/sll_ll_rl_name_tv"
|
android:layout_width="wrap_content"
|
android:layout_height="@dimen/dp_21"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="@dimen/dp_16"
|
android:text="@string/set_nickname"
|
android:textColor="@color/text_030D1C"
|
android:textSize="@dimen/text_15"
|
|
/>
|
|
<ImageView
|
android:id="@+id/sll_ll_rl_right_icon_iv"
|
android:layout_width="@dimen/dp_16"
|
android:layout_height="@dimen/dp_16"
|
android:layout_alignParentEnd="true"
|
android:layout_centerVertical="true"
|
android:layout_marginEnd="@dimen/dp_13"
|
android:src="@drawable/next" />
|
|
<View
|
android:id="@+id/line_v"
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:layout_alignParentBottom="true"
|
android:background="@color/text_E1E1E1"
|
android:visibility="gone"
|
|
/>
|
|
</RelativeLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|