How to remove suggestions from keyboard with "#"? - android

I'm having an EditText where I set the inputType="textEmailAddress|textVisiblePassword". But the keyboard still shows suggestion. I want to remove the suggestions and keyboard should show "#".

Related

Open emoji keyboard layout on editText click

I want to let the user only type emojis in an editText field. Is there a way to instantly show the emoji keyboard of the android keyboard when you click on a editText field?
Right now I helped myself with the android:inputType="textShortMessage" The problem here is, I always have to push the emoji icon in the bottom corner to open the emoji keyboard.
Does anybody have a clue? Thanks in advance! :)

Hide keyboard when tap outsite of an edittext with recyclerview

I am trying to hide the keyboard, I thought I had found a solution in this post
How to hide keyboard just by one tap outside of an edittext?
The solutions works! but I have a recyclerview and it stays blocked when the keyboard hides
thanks in advance

Show two editText views and a button when softKeyboard opens

I am trying to scroll so that the two editText views and the button are all shown when the keyboard opens up. I have already tried adding softInputMode to the xml (I set it to adjustResize). I am now completely lost on how to do this. Anyone have any ideas?
Before the Keyboard shows up
When the keyboard opens
What I want it to look like
Thank you in advance!

Change icon on softkeyboard

I have an EditText with android:imeOptions="actionDone". The soft keyboard that pops up shows a tick mark. I want to change it to the one in google contacts search -->| . How can i do this? Can it be set in xml?
android:imeOptions flags include
actionDone
actionNext

Show edittext when soft keyboard appear in android

I have some edittext on my layout, when I click on the edittext for filling it the softkeyboard appear and everything in fine, I can see the input and the softkeyboard but when I click on the edittexts at the bottom of the layout the softkeyboard appear and the edittext is not visible while I'm typing, I have to scroll down to see it. Is there any way to automatically scroll to the edittext so I can see when I'm typing and the softkeyboard at the same time?
You just need to add this to your activity tag in the manifest
android:windowSoftInputMode="adjustPan"
Have a look at this developers blog _ On-screen Input Methods.
Summing up I guess this line should help you:
android:windowSoftInputMode="stateVisible|adjustResize">

Categories

Resources