[android-developers] Re: Speech Recognition makes a beep when the user Cancels. This is bad.

2009-11-15 Thread AngelOD
Wouldn't it be enough to have a small pause after cancellation, before starting to listen again? Or have you already tried this? -- 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] Re: App name/icon problems on Hero after reboot

2009-11-14 Thread AngelOD
Hi, I would just like to add here, that I have a Scandinavian HTC Hero, and I've tried to recreate several of these errors, without luck, so whatever it is, that causes it, I'd have to assume it's not in the Scandinavian release of the firmware. Just in case someone wanted to note that to HTC

[android-developers] Can I make this query with SQLiteQueryBuilder?

2009-11-09 Thread AngelOD
I want to perform a query, retrieving all entries linked to a specific item, in a many-to-many relationship. I have three tables (for this demonstration anyway): - categories (_id, name) - items (_id, name) - categories_items (_id, category_id, item_id) I know that, in order to query for all

[android-developers] Re: Views below ScrollView

2009-09-01 Thread AngelOD
Hmm, I suppose that could work, but if you use a vertical LinearLayout, and then have a ScrollView with a layout-weight of 1, and a horizontal LinearLayout with a layout-weight of 0, wouldn't that work at least as well? :) On Sep 1, 9:14 am, Atif Gulzar atif.gul...@gmail.com wrote: ok I find