[android-developers] Select multiple photos from a file browser?

2010-01-07 Thread kevin.hooke
Is there a way to select multiple photos instead of just one using Intent.ACTION_PICK? I'm doing something like this: Intent photoPickerIntent = new Intent (Intent.ACTION_PICK); photoPickerIntent.setType(image/*);

[android-developers] Re: Need an invitation to google Wave?

2009-11-01 Thread kevin.hooke
yes please! On Nov 1, 10:44 am, moazzamk moazz...@gmail.com wrote: invite me please On Nov 1, 11:50 am, John P. johnny.d.p...@gmail.com wrote: I'd like one.  Thank you if you could send it!  =) On Nov 1, 1:20 am, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google

[android-developers] Issues with SDK plugin 0.9.4

2009-11-01 Thread kevin.hooke
I recently upgraded from 0.9.2 (I think) to 0.9.4 of the SDK plugin using Eclipse's 'Check for updates' and for a while everything seemed ok. Now I'm getting random errors and odd behavior everywhere: - if I try and run or debug a previously working app in the Emulator from Eclipse, I get 'Could

[android-developers] Re: Issues with SDK plugin 0.9.4

2009-11-01 Thread kevin.hooke
Turns out the ClassNotFound exception was from XStream for not finding a class for some unexpected XML that was coming back from a WebService call... completely unrelated to the SDK and the Eclipse plugin tools... On Nov 1, 8:05 pm, kevin.hooke kevin.ho...@gmail.com wrote: I recently upgraded

[android-developers] Re: BitmapFactory.decodeStream sometimes returns null

2009-10-20 Thread kevin.hooke
I'm having a similar problem where BitmapFactory.decodeStream() is working reliably in the emulator, but the same app transferred to the phone is returning null everytime. Any ideas? Kevin Hooke On Oct 14, 5:10 pm, anthony.dahanne anthony.daha...@gmail.com wrote: Hello ! I'm experiencing

[android-developers] Re: Just beginning

2009-10-20 Thread kevin.hooke
you need an Android phone, like the G1 or myTouch3g, or one of the other upcoming Android phones coming later this year. On Oct 20, 11:37 am, Kate katerave...@gmail.com wrote: Currently I have a tmobile behold, and I am replused by the operating touch wiz system.  What do i need to do to get

[android-developers] Re: Very urgent

2009-10-20 Thread kevin.hooke
If you tell us a bit more about what you're trying to do then someone might be able to help you? On Oct 20, 2:50 pm, IPEG Student ipeg.stud...@gmail.com wrote: Hello      can any body tell me how can i delete this string. I have used this coding. temp =

[android-developers] Photostream app: BitmapFactory decodeByteArray() vs decodeStream()

2009-10-20 Thread kevin.hooke
I've been trying to use BitmapFactory decodeStream() to load jpegs from Flickr. This code works in the emulator but returns null when run on my MyTouch3g: URL url = new URL(sourceUrl); URLConnection conn = url.openConnection(); conn.connect(); InputStream is = conn.getInputStream();

[android-developers] BitmapFactory.decodeStream() works in Emulator, not on phone?

2009-10-19 Thread kevin.hooke
I'm debugging an app that is loading images from Flickr's webservice API. I have a snippet of code that is using BitmapFactory.decodeStream () to create a Bitmap from an InputStream reading from a URL to a jpeg hosted on Flickr. This code works fine in the emulator, but if I debug the same app

[android-developers] Re: how?

2009-10-19 Thread kevin.hooke
In some kind of order to start with, but later steps in any order: 1. Pick a language 2. read docs 3. find tutorials online 4. work through tutorials 5. code, code, code! 6. find books, online articles etc related to what you're interested in - read 7. try stuff out, find out what works, what

[android-developers] Re: Google wave invitations...?

2009-10-19 Thread kevin.hooke
If there's any left - yes please! On Oct 16, 7:32 am, budziq bud...@gmail.com wrote: Well. Who wouldn't want one ;)? I guess I'd like one too ;) On Oct 16, 4:02 pm, Carl Whalley carl.whal...@googlemail.com wrote: I'd love an invite too ... anyone ... thanks! On Oct 16, 2:26 pm, Gavin

[android-developers] Re: getting crash stack....

2009-09-26 Thread kevin.hooke
If you're running in the Debugger in Eclipse it appears in the Log viewer. However if anyone knows of an approach to log/write it to somewhere on the device itself, that would be useful too for testing on the device itself? Kevin Hooke On Sep 25, 5:22 pm, sdphil phil.pellouch...@gmail.com

[android-developers] Re: Including other Java source projects in Android project

2009-09-24 Thread kevin.hooke
-OSDC ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Sep 18, 11:11 am, kevin.hooke kevin.ho...@gmail.com wrote: Is it possible

[android-developers] Flickr-j api on Android?

2009-09-24 Thread kevin.hooke
It looks like Flickr-j won't work on Android as it has dependencies on XML DOM api methods that don't exist in the org.w3c.dom.Element class that is bundled in the SDK: 09-24 20:37:42.808: ERROR/dalvikvm(734): Could not find method org.w3c.dom.Element.getTextContent, referenced from method

[android-developers] Including other Java source projects in Android project

2009-09-20 Thread kevin.hooke
Is it possible to include other Java source projects in Eclipse into an Android project? Normally for a regular Java project you do this by adding the other project to the build path and including it in the Project References. This same approach lets the code compile, but when the app is