disable android keyboard quick fixes
The Andro开发者_StackOverflow社区id keyboard changes the text entered by the user, for example if the user enters 2 spaces, they are replaced by '. ' (a period and a space). How can i disable this quick fix feature in code?
Try to set autoText to false in the xml properties of that TextView
http://developer.android.com/reference/android/widget/TextView.html#attr_android:autoText
精彩评论