Re: [android-beginners] Re: Can a full app (not widget) be postage stamp size?

2010-06-08 Thread Kostya Vasilyev
Congratulations, James. Note: you can merge the broadcast receiver with your AppWidgetProvider, same one that handles APPWIDGET_UPDATE. -- Kostya 08.06.2010 15:18, cellurl пишет: I got it working. I tossed my version and started with a copy of ApiDemos, adding code below. One interesting

Re: [android-beginners] Regarding enter key on virtual keyboard

2010-06-08 Thread ameya dandekar
Hi eudokija, Thanks for the reply, i have done the same thing in my layout file,it works on the emulator and Motorola cliq/blur but for htc magic device , which is having the ENTER key instead of NEXT , it does not take any action. So, is any there any alternate way to do this ?

Fwd: [android-beginners] Regarding enter key on virtual keyboard

2010-06-08 Thread ameya dandekar
-- Forwarded message -- From: ameya dandekar ameya...@gmail.com Date: Tue, Jun 8, 2010 at 5:18 PM Subject: Re: [android-beginners] Regarding enter key on virtual keyboard To: android-beginners@googlegroups.com, android-develop...@googlegroups.com Hi eudokija, Thanks

[android-beginners] scrollView.scrollTo() speed control?

2010-06-08 Thread Michael Dorin
I would like to programmatically scroll to a specific point in a scrollView...which I can do just fine... Except I land there instantly. Is there a way to control the speed of the scroll so it looks smoother? Could somebody point me to an animation with a scrollview? Thank you! -Mike -- You

[android-beginners] Is Browsing While Calling Impossible? Why?

2010-06-08 Thread Daniel Favela
Greetings, fellow aspiring Android developers! In a discussion about the differences between the iPhone and Android devices, I recently heard that Verizon users were unable to browse the internet while they were on a call. That is: 1. User makes a phone call. 2. User hits Home and opens up the

[android-beginners] Converting audio format

2010-06-08 Thread deg
My app captures audio to PCM (.wav) format using android.media.AudioRecord. Now, I'd like to convert the captured audio to a compressed format (MP3 or anything else reasonably standard). I can't find how to do this. Is there any supported way? Thanks, David -- You received this message

Re: [android-beginners] Is Browsing While Calling Impossible? Why?

2010-06-08 Thread Mark Murphy
Daniel Favela wrote: - Is it up to Android? Can I, as a developer, overcome this limitation? No, it is fundamental to CDMA. GSM phones (T-Mobile, ATT, and most of the rest of the civilized world) due not suffer from this limitation. -- Mark Murphy (a Commons Guy) http://commonsware.com |

[android-beginners] ListView

2010-06-08 Thread Sandy
Is it possible to have a horizontal list view with an vertical list view? I would like to horizontal list scroll within a vertical list scroll. Any suggestions please? |-| | ListItem | |--| | ListItem

[android-beginners] Re: Is Browsing While Calling Impossible? Why?

2010-06-08 Thread Abhi
How can we use google maps while on call on the Verizon network then? On Jun 8, 2:40 pm, Mark Murphy mmur...@commonsware.com wrote: Daniel Favela wrote: - Is it up to Android?  Can I, as a developer, overcome this limitation? No, it is fundamental to CDMA. GSM phones (T-Mobile, ATT, and most

Re: [android-beginners] Re: Is Browsing While Calling Impossible? Why?

2010-06-08 Thread Iron Mantis
I have found a way to do that. If anyone knows let us all know. On Jun 8, 2010 2:23 PM, Abhi abhishek.r.sha...@gmail.com wrote: How can we use google maps while on call on the Verizon network then? On Jun 8, 2:40 pm, Mark Murphy mmur...@commonsware.com wrote: Daniel Favela wrote: - Is it

Re: [android-beginners] Re: Is Browsing While Calling Impossible? Why?

2010-06-08 Thread Mark Murphy
Abhi wrote: How can we use google maps while on call on the Verizon network then? You can, if you have WiFi on and are connected. You can't if you are just on 3G. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog |

[android-beginners] Re: MovieViewControl unable to become a receiver during Broadcast.

2010-06-08 Thread Paulina
Ok, solved adding an explicit intent and filter directly in the MovieView =) On May 26, 12:13 pm, Paulina winterdam...@gmail.com wrote: Hi! I'm currently trying to catch a broadcast message with the MovieViewControl class, already added the filter in the Gallery's manifest: receiver

[android-beginners] Re: Converting audio format

2010-06-08 Thread BobG
I think this is what MediaRecorder does? -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send

[android-beginners] Re: Setting theme for an activity

2010-06-08 Thread Rahul Garg
Hi Sudesh, in your themes.xml file, instead of android.windowBackground, use android:background it will work fine. Best Wishes Rahul Garg On Jun 7, 9:55 am, Sudeep Jha sudeep.neti...@gmail.com wrote: Hi All, This is my  themes.xml file resources style name=Theme.Blue

[android-beginners] DB Cursor gets reset?

2010-06-08 Thread Kevin Brooks
When I click the Show Back button the second time, the cursor object has been reset. Does anyone have an idea what is going on? package com.android.flashcardloop; import android.app.Activity; import android.content.Intent; import android.database.Cursor; import

[android-beginners] Re: MediaController in MediaPlayer

2010-06-08 Thread Rahul Garg
Hi Abhi, Here is the code for video player, I dont know how to do it with mediaplayer, but i guess following code will fulfill your requirements. package org.example.tryaudio; import java.net.URI; import android.app.Activity; import android.media.MediaPlayer; import android.net.Uri; import