Disable soft keyboard on NumberPicker
I’m trying to deactivate the soft keyboard when using a NumberPicker to enter numerical values (for aesthetic reasons). This is my layout-xml-code: <?xml … Read more
I’m trying to deactivate the soft keyboard when using a NumberPicker to enter numerical values (for aesthetic reasons). This is my layout-xml-code: <?xml … Read more
How do I convert a string into an integer? I have a textbox I have the user enter a number into: EditText et … Read more
Does anyone know how to disable the blinking cursor in an EditText view? 11 Answers 11
I have an Activity with 3 EditTexts and a custom view which acts a specialised keyboard to add information into the EditTexts. Currently … Read more
I have an EditText-Field and set an OnFocusChangeListener for it. When it has lost focus, a method is called, which checks the value … Read more
I have to switch between two layouts frequently. The error is happening in the layout posted below. When my layout is called the … Read more
In my application, I have an EditText whose default input type is set to android:inputType=”textPassword” by default. It has a CheckBox to its … Read more
I am having an EditText where I am setting the following property so that I can display the done button on the keyboard … Read more
I have an EditText in which I want only integer values to be inserted. Can somebody tell me which property I have to … Read more
I have a layout which contains some views like this: <LinearLayout> <TextView…> <TextView…> <ImageView …> <EditText…> <Button…> </linearLayout> How can I set the … Read more