Pintail: an application with a UI so simple nothing could go wrong with the
move to 1.5... er... not quite.
It has a single EditText view defined as follows (layout attrs elided):

<EditText
  android:id="@+id/pin"
  android:digits="0123456789"
  android:password="true"
  android:singleLine="true"
  android:maxLength="6"
/>

The problem is that you can't enter text into it using the soft keyboard in
the emulator. After a bit of faffing around it seems that specifying the
android:digits attribute somehow prevents the soft keyboard from appearing
when you tap onto the field.

I understand that the KeyListeners have evolved to report an InputType
(TYPE_CLASS_NUMBER in the case of DigitsKeyListener) is it simply a case
that the emulator doesn't host an IME for numeric data entry, but that
actual devices do/will? Or is it actually a bug?

Tom.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to