-
Notifications
You must be signed in to change notification settings - Fork 0
Home
qrc0403 edited this page Sep 6, 2018
·
3 revisions
Welcome to the CaptchaInputView wiki!
<com.qiu.captcha.CaptchaInputView
android:id="@+id/captchaView"
android:layout_marginStart="38dp"
android:layout_marginEnd="38dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
val inputView = findViewById<CaptchaInputView>(R.id.captchaView)
inputView.setOnInputCompleteListener { Toast.makeText(this@MainActivity, "验证码:$it", Toast.LENGTH_LONG).show() }
