Android - EditText keyboard type programmatically - Stack ...
文章推薦指數: 80 %
Android Keyboard Type - Stack Overflow
Home
Public
Questions
Tags
Users
Collectives
ExploreCollectives
FindaJob
Jobs
Companies
Teams
StackOverflowforTeams
–Collaborateandshareknowledgewithaprivategroup.
CreateafreeTeam
WhatisTeams?
Teams
CreatefreeTeam
CollectivesonStackOverflow
Findcentralized,trustedcontentandcollaboratearoundthetechnologiesyouusemost.
Learnmore
Teams
Q&Aforwork
Connectandshareknowledgewithinasinglelocationthatisstructuredandeasytosearch.
Learnmore
Android-EditTextkeyboardtypeprogrammatically
AskQuestion
Asked
4years,1monthago
Active
4years,1monthago
Viewed
3ktimes
1
Itrytosetthekeyboardtypeofanedittext.
WhenIusebelowcode,itchangesthefontoftheedittext'shint.
setInputType(TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_PASSWORD);
So,Itryanothersolution.
setTransformationMethod(newPasswordTransformationMethod());
Icreateanedittext.Mypasswordisshownontopofthekeyboard.(lookslikeautosuggestion).
HowcanIsetthekeyboardtypeforpasswordwithoutchangingthefontofthetext?
androidandroid-edittextandroid-softkeyboard
Share
Follow
askedSep29'17at7:27
us2956us2956
41699silverbadges2222bronzebadges
Addacomment
|
3Answers
3
Active
Oldest
Votes
3
forFontissueyoucantrythis:
editText.setInputType(InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_VARIATION_PASSWORD);
editText.setTypeface(Typeface.DEFAULT);
Share
Follow
answeredSep29'17at9:22
N.MoudgilN.Moudgil
53922silverbadges1010bronzebadges
1
Typeface.DEFAULTisnotenough.Seemyanswer.
– us2956
Sep29'17at11:37
Addacomment
|
2
Solutionishere:
typeface=edittext.getTypeface();
editText.setInputType(InputType.TYPE_CLASS_TEXT|InputType.TYPE_TEXT_VARIATION_PASSWORD);
editText.setTypeface(typeface);
Share
Follow
answeredSep29'17at11:35
us2956us2956
41699silverbadges2222bronzebadges
Addacomment
|
-1
//thisworkforme,donotsetandroid:inputType="textPassword"inyourxmlfileandinstead,setitinjava
延伸文章資訊
- 1TextInput - React Native
... and different keyboard types, such as a numeric keypad. ... Note that on Android performing t...
- 2Specifying the Input Method Type | Android Developers - M.I.T.
Specify the Keyboard Type
- 3Fix problems with Gboard - Android - Google Support
If Gboard switches to another keyboard, you can switch it back. On your Android phone or tablet, ...
- 4How to change the keyboard on your Android phone
Open the Settings on your phone. · Scroll down and tap System. · Tap Languages & input. · Tap Vir...
- 5Android - EditText keyboard type programmatically - Stack ...
Android Keyboard Type - Stack Overflow