On Sat, Sep 8, 2012 at 9:34 AM, powder366 <[email protected]> wrote: > OK. Is there a description that says what kind of letters, number etc. you > get using one InputType.
Not really. > I've seen this link: > http://developer.android.com/reference/android/text/InputType.html And that is all the documentation we have. So, for example, TYPE_CLASS_NUMBER is described as being for "numeric text". Personally, I would make no assumptions about anything beyond 0-9 being available. TYPE_NUMBER_FLAG_SIGNED should add some sort of +/- option, and TYPE_NUMBER_FLAG_DECIMAL should add a locale-specific decimal indicator (e.g., a period in US English). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.1 Available! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

