parent
8441e4e5dd
commit
bf6884c60c
|
@ -74,10 +74,7 @@ class AuditionApplyDialogFragment(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.tvAgree.setOnClickListener {
|
binding.llAgree.setOnClickListener { it.isSelected = !it.isSelected }
|
||||||
it.isSelected = !it.isSelected
|
|
||||||
}
|
|
||||||
|
|
||||||
binding.tvAudioFileName.text = fileName
|
binding.tvAudioFileName.text = fileName
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
|
@ -97,18 +96,31 @@
|
||||||
android:theme="@style/EditTextStyle"
|
android:theme="@style/EditTextStyle"
|
||||||
tools:ignore="LabelFor,TextFields" />
|
tools:ignore="LabelFor,TextFields" />
|
||||||
|
|
||||||
<TextView
|
<LinearLayout
|
||||||
android:id="@+id/tv_agree"
|
android:id="@+id/ll_agree"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="30dp"
|
android:layout_marginTop="30dp"
|
||||||
android:drawablePadding="13.3dp"
|
android:orientation="horizontal"
|
||||||
android:fontFamily="@font/gmarket_sans_medium"
|
tools:ignore="UseCompoundDrawables">
|
||||||
android:gravity="center_vertical"
|
|
||||||
android:text="보이스온 오디오 드라마 오디션 합격시 개인 연락을 위한 개인 정보(연락처) 수집 및 활용에 동의합니다.\n오디션 지원자는 개인정보 수집 및 활용 동의에 거부할 권리가 있으며 비동의시 오디션 지원은 취소 됩니다."
|
<ImageView
|
||||||
android:textColor="@color/color_eeeeee"
|
android:layout_width="wrap_content"
|
||||||
android:textSize="13.3sp"
|
android:layout_height="wrap_content"
|
||||||
app:drawableStartCompat="@drawable/ic_select" />
|
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/gmarket_sans_medium"
|
||||||
|
android:lineSpacingMultiplier="1.25"
|
||||||
|
android:text="보이스온 오디오 드라마 오디션 합격시 개인 연락을 위한 개인 정보(연락처) 수집 및 활용에 동의합니다.\n오디션 지원자는 개인정보 수집 및 활용 동의에 거부할 권리가 있으며 비동의시 오디션 지원은 취소 됩니다."
|
||||||
|
android:textColor="@color/color_eeeeee"
|
||||||
|
android:textSize="13.3sp" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_audition_apply"
|
android:id="@+id/tv_audition_apply"
|
||||||
|
|
Loading…
Reference in New Issue