25 lines
882 B
XML
25 lines
882 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:fontFamily="@font/pretendard_bold"
|
|
android:text="@string/screen_user_profile_channel_intro_title"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="16.7sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_introduce"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16.7dp"
|
|
android:fontFamily="@font/gmarket_sans_medium"
|
|
android:textColor="@color/color_777777"
|
|
android:textSize="13.3sp" />
|
|
|
|
</LinearLayout>
|