[android-developers] RecognizerIntent not working; “missing extra calling_package”

2011-01-18 Thread Isaac Waller
I'm having problems using the RecognizerIntent API on Android 2.2. When I call the API using this code: Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);

[android-developers] New Icon Guidelines for 2.0

2009-10-27 Thread Isaac Waller
I see in your demo video you seem to have a new style of icons for Android 2.0 - when are you going to update the Icon Guidelines for 2.0? I would like to update my icons to fit in with the UI as soon as possible - it is very important to me that my icons fit in with the rest. Thanks, Isaac

[android-developers] Garbled extracted XML resources

2009-07-28 Thread Isaac Waller
Hello, When I extract a XML file from res/layout in an APK file it is garbled up. How can I fix this? Thanks, Isaac --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Android: NullPointerException at android.app.ActivityThread$PackageInfo$ServiceDispatcher.doConnected( ActivityThread.java:1012)

2009-07-09 Thread Isaac Waller
this problem? Thanks, Isaac Waller --~--~-~--~~~---~--~~ 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

[android-developers] Re: Android Loading listview items from service results in hang

2009-05-24 Thread Isaac Waller
How would I delay the saved state application until I load the service then? LOADING is my android:empty view - I guess I could remove it... Thanks, Isaac Waller On May 23, 9:11 pm, Marco Nelissen marc...@android.com wrote: On Sat, May 23, 2009 at 8:27 PM, Isaac Waller ad...@isaacwaller.com

[android-developers] Re: Android Loading listview items from service results in hang

2009-05-24 Thread Isaac Waller
...@commonsware.com wrote: Isaac Waller wrote: No, what you are supposed to do, is not return from onCreate until you are ready to show your GUI. The notion that you should not return from onCreate until you are ready to show your GUI is simply incorrect. 1. There is nothing forcing you

[android-developers] Android Loading listview items from service results in hang

2009-05-23 Thread Isaac Waller
for such a long question, Isaac Waller --~--~-~--~~~---~--~~ 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

[android-developers] Re: Android Loading listview items from service results in hang

2009-05-23 Thread Isaac Waller
is inside a List inside my service, already pre-made. It should take basically no time at all. How would I fix the deadlock? On May 23, 5:33 pm, Mark Murphy mmur...@commonsware.com wrote: Isaac Waller wrote: In my Android application, I have a ListActivity. This ListActivity uses

[android-developers] Re: Android Loading listview items from service results in hang

2009-05-23 Thread Isaac Waller
Even if I changed that, I would lose the saved list scroll position and selected item. I do not want to make some hack around running it in the UI thread - I want to hang the UI thread. On May 23, 8:06 pm, Jason Proctor ja...@particularplace.com wrote: If I do this, then I lose the benefits of

[android-developers] Re: Android Loading listview items from service results in hang

2009-05-23 Thread Isaac Waller
quite ugly. And then there is the losing of scroll position and focus too. On May 23, 8:23 pm, Marco Nelissen marc...@android.com wrote: hanging the UI thread is the hack. I suggest you do it the right way instead. On Sat, May 23, 2009 at 8:09 PM, Isaac Waller ad...@isaacwaller.com wrote

[android-developers] Install .odex + .apk

2009-02-22 Thread Isaac Waller
Hello, I have a .odex and a .apk file. I understand that the .odex is just the classes.dex file extracted, so if there is some way I can put it back in so I can install it on the emulator? I am getting errors about classes.dex without that. Thanks, Isaac