appsfeature / otp-view

OTP View in Android
17 stars 3 forks source link

How can I disable keyboard ? #4

Open mcanikhilprajapati opened 5 days ago

mcanikhilprajapati commented 5 days ago

I dont want to show keyboard and want to use my own way to input for that How can I disable keyboard?

appsfeature commented 5 days ago

To block the EditText from opening the soft keyboard when it gains focus, you can:

Set inputType="none".

Override the onFocusChangeListener to hide the keyboard programmatically.

Modify the android:windowSoftInputMode in your manifest to control keyboard behavior.

Use OnTouchListener to intercept touch events.

Create a custom EditText that disables keyboard input.

mcanikhilprajapati commented 5 days ago

Thanks for quick response, let me test

mcanikhilprajapati commented 5 days ago

binding!!.otpView.otpEditText!!.showSoftInputOnFocus = false and in manifeast android:windowSoftInputMode="stateAlwaysHidden"

works fine

Thanks alot