You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 15, 2020. It is now read-only.
Hi,
Thanks for this superb lib. Its working fine with my application.
I would like to set random key values to the KeyboardButtonView objects so that formation of the keyboard keeps changing every time the user gets back to the app. Unfortunately, its not allowing me to set any value to it like other views.
Could you please guide me on that? Or any suggestion?
The text was updated successfully, but these errors were encountered:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
for (i in 0 until 10) {
val idStr = String.format(Locale.getDefault(), "pin_code_button_%d", i)
val id = resources.getIdentifier(idStr, "id", packageName)
val button = mKeyboardView.findViewById(id)
val txt = button.findViewById(R.id.keyboard_button_textview)
txt.setText("some random")
}
}
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
Thanks for this superb lib. Its working fine with my application.
I would like to set random key values to the KeyboardButtonView objects so that formation of the keyboard keeps changing every time the user gets back to the app. Unfortunately, its not allowing me to set any value to it like other views.
Could you please guide me on that? Or any suggestion?
The text was updated successfully, but these errors were encountered: