pretendard_bold -> bold pretendard_regular -> regular pretendard_medium -> medium pretendard_light -> light
139 lines
5.5 KiB
XML
139 lines
5.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/color_222222">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:paddingHorizontal="13.3dp"
|
|
android:paddingVertical="16.7dp">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/medium"
|
|
android:text="@string/dialog_audition_apply_title"
|
|
android:textColor="@color/white"
|
|
android:textSize="18.3sp" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_close"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentEnd="true"
|
|
android:layout_centerVertical="true"
|
|
android:src="@drawable/ic_noti_stop" />
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:fontFamily="@font/bold"
|
|
android:text="@string/dialog_audition_apply_audio_file_title"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="16.7sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@drawable/bg_round_corner_5_3_13181b"
|
|
android:orientation="horizontal"
|
|
android:paddingHorizontal="13.3dp"
|
|
android:paddingVertical="8dp">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_note_square" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_audio_file_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="4dp"
|
|
android:fontFamily="@font/medium"
|
|
android:textColor="@color/color_d2d2d2"
|
|
android:textSize="13.3sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="15dp"
|
|
android:fontFamily="@font/bold"
|
|
android:text="@string/dialog_audition_apply_phone_title"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="16.7sp" />
|
|
|
|
<EditText
|
|
android:id="@+id/et_phone_number"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:background="@drawable/bg_round_corner_5_3_13181b"
|
|
android:fontFamily="@font/medium"
|
|
android:hint="@string/dialog_audition_apply_phone_hint"
|
|
android:importantForAutofill="no"
|
|
android:inputType="numberSigned"
|
|
android:maxEms="12"
|
|
android:paddingHorizontal="13.3dp"
|
|
android:paddingVertical="17dp"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textColorHint="@color/color_777777"
|
|
android:textCursorDrawable="@drawable/edit_text_cursor"
|
|
android:textSize="13.3sp"
|
|
android:theme="@style/EditTextStyle"
|
|
tools:ignore="LabelFor,TextFields" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_agree"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="30dp"
|
|
android:orientation="horizontal"
|
|
tools:ignore="UseCompoundDrawables">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/ic_select" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_agree"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="13.3dp"
|
|
android:fontFamily="@font/medium"
|
|
android:lineSpacingMultiplier="1.25"
|
|
android:text="@string/dialog_audition_apply_agreement"
|
|
android:textColor="@color/color_eeeeee"
|
|
android:textSize="13.3sp" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_audition_apply"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="35dp"
|
|
android:background="@drawable/bg_round_corner_8_3bb9f1"
|
|
android:fontFamily="@font/bold"
|
|
android:gravity="center"
|
|
android:paddingVertical="13.3dp"
|
|
android:text="@string/dialog_audition_apply_submit"
|
|
android:textColor="@color/white"
|
|
android:textSize="13.3sp" />
|
|
</LinearLayout>
|
|
</ScrollView>
|