You'll actually want to use "int".  The aidl language does not support
Integer etc, it uses only the fundamental types.  This is most likely
what you really want, since using an Integer is significantly more
expensive than a plain int.

Also, if you are using ints with maps, be sure to have a look at the
various android.util.Sparse* classes to see if one will do what you
want, because these are likely much more efficient for you than using
an Integer with a Map.

On Oct 11, 5:27 pm, donm <[EMAIL PROTECTED]> wrote:
> Hi Mark,
>
> On Oct 11, 9:27 pm, Mark Murphy <[EMAIL PROTECTED]> wrote:
>
> > Try int instead of Integer.
>
> thanks for the answer. I should have mentioned that I want to put the
> Integer into a Map
> and for that they need to be an object.
>
> MartinD:
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to