Android keyboard Issue? - android

Every keyboard app has auto capitalization of first letter of each sentence feature in settings, but I want to put first letter of each word also. I have changed android:inputType = textCapSentences into textCapWords everywhere but still keyboard is typing in sentence case.
Please help me!
Thank you in advance.
Help with the android keyboard issue, Please

Related

How To Edit Android Keyboard [duplicate]

Every keyboard app has auto capitalization of first letter of each sentence feature in settings, but I want to put first letter of each word also. I have changed android:inputType = textCapSentences into textCapWords everywhere but still keyboard is typing in sentence case.
Please help me!
Thank you in advance.
Help with the android keyboard issue, Please

how to hide sticker/gif suggestions from keyboard

Is there any way to hide sticker/gif suggestions from all types of keyboards(including 3rd party)?
I am able to do that only for Gboard by setting inputType of EditText to InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD.
Any help or suggestion will be well appreciated.
I sadly didn't figure out how to hide it on all keyboards. But I found another way. I posted my answer here on a similar question.
I just "block" the user when he tries to import a gif or a stickers whatever the keyboard.

Swiftkey ignores TextInputEditText flag InputType.TYPE_TEXT_FLAG_CAP_WORDS - doesn't capitalize

I have a simple TextInputLayout. TextInputEditText which is inside TextInputLayout has two InputType flags -
InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
and
InputType.TYPE_TEXT_FLAG_CAP_WORDS
These flags are set programmatically. It should disable suggestions and capitalize each single word which you write. It works without problem on default Android keyboard.
Unfortunately, if you use Swift Keyboard instead it ignores the second flag (it doesn't automatically capitalize the first letter of each word.
I don't have any experience with 3rd party soft keyboards. Does anybody have any idea how to solve it?
In the end, I found out that SwiftKey ignores all InputType.TYPE_TEXT_FLAG_XXX if you set them programmatically. I tried to set them in XML and it worked fine. However, it still isn't the best solution because sometimes it is necessary to set it programmatically. I somebody find some better solution please leave a comment :)

Android EditText With Suggestions, but Without AutoCorrect

Is there a way I can get android Edit Text to show suggestions when the user type the word, but do not auto-correct the value. Autocorrect shall be shown only if user clicks on the suggestion.
I've checked the following answers...
EditText without auto-correction, etc
, but it doesn't show suggestions at all.
Thanks.
May be you are looking for Providing Auto-complete Suggestions for suggesting data.
And if you want to stop auto-correcting then try to add this line into your EditText.
android:inputType="textFilter"
Hope it will help you.

edittext not showing the typed text in android

In my android application i am using a simple login page.
The issue is that when testing in android htc wildfire,the user could not see the text typed till he press back or done
I would like the user to view his text while typing itself.
'
Could anyone please let me know how to resolve this?
Please share your valuable suggestions.
Thanks in advance :)
Looks like your problem is this:
When user clicks in the EditText to type, the keyboard pops up and hides the EditText, thus the user can't see what he's typing
For this, you can put that EditText into a ScrollView so that when keyboard pops-up, Android scrolls the EditText up. This way,the user can see what he's typing.
Well I don't know whether it will help you or not. but am sharing because some other may be benifited. I got the same issue in my Kindle tablet.
And I have solved this just by adding the simple attribute to the edittext.
<EditText
.........
android:textCursorDrawable="#drawable/Black"
/>
And its done. Now it will show each character you types.
If it helps you, I will suggest you to write the above attribute everytime you declare an edittext, even though this issue doesn't occur.

Categories

Resources