forked from shihaam/thijooree
fix weird error on failed pin
This commit is contained in:
@@ -203,15 +203,15 @@ class LockActivity : AppCompatActivity() {
|
|||||||
if (remaining <= 0) return false
|
if (remaining <= 0) return false
|
||||||
val secs = ((remaining + 999L) / 1000L).toInt()
|
val secs = ((remaining + 999L) / 1000L).toInt()
|
||||||
val msg = getString(R.string.unlock_locked_out, secs)
|
val msg = getString(R.string.unlock_locked_out, secs)
|
||||||
binding.tvLockPinDots.text = msg
|
binding.tvPinHint.text = msg
|
||||||
binding.root.postDelayed({ updateDots() }, remaining)
|
binding.root.postDelayed({ binding.tvPinHint.text = ""; updateDots() }, remaining)
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun showFailure() {
|
private fun showFailure() {
|
||||||
val msg = failureMessage()
|
val msg = failureMessage()
|
||||||
binding.tvLockPinDots.text = msg
|
binding.tvPinHint.text = msg
|
||||||
binding.root.postDelayed({ updateDots() }, 1200)
|
binding.root.postDelayed({ binding.tvPinHint.text = ""; updateDots() }, 1200)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun failureMessage(): String {
|
private fun failureMessage(): String {
|
||||||
|
|||||||
@@ -52,7 +52,16 @@
|
|||||||
android:textSize="26sp"
|
android:textSize="26sp"
|
||||||
android:letterSpacing="0.3"
|
android:letterSpacing="0.3"
|
||||||
android:textColor="?attr/colorPrimary"
|
android:textColor="?attr/colorPrimary"
|
||||||
android:layout_marginBottom="24dp" />
|
android:layout_marginBottom="4dp" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tvPinHint"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:textAppearance="?attr/textAppearanceBodySmall"
|
||||||
|
android:textColor="?attr/colorOnSurfaceVariant"
|
||||||
|
android:gravity="center"
|
||||||
|
android:layout_marginBottom="20dp" />
|
||||||
|
|
||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/lockNumpadContainer"
|
android:id="@+id/lockNumpadContainer"
|
||||||
|
|||||||
Reference in New Issue
Block a user