[android-beginners] : Help Plzzz

2008-09-08 Thread Imran
Hi Hai i am new to this ANDROID... so can any one tell me how to processed(in the API Sense) so tat it will be easy to me to learn Thanks in Advance for any replay's --~--~-~--~~~---~--~~ You received this message

[android-beginners] Re: When dexing the classes to apk format file, it is said out of memory error

2008-09-08 Thread [EMAIL PROTECTED]
Hi, Mark Thanks for your post. I should try more before I post this. I achieved this goal by changing the dx.bat, adding the -Xms and -Xmx option at the last line. It worked ok. Thanks and regards! Tao --~--~-~--~~~---~--~~ You received this message because you

[android-beginners] Re: Cannot find symbol class android.view.MenuItem

2008-09-08 Thread Vaibhav Gathibandhe
Hi, Thanks a lot for the solution. I was using previous version and referring to latest version of API. The problem is solved now. Thanks and Regards, Vaibhav Gathibandhe On Sun, Sep 7, 2008 at 5:46 AM, Mark Murphy [EMAIL PROTECTED] wrote: I am trying to import the MenuItem class, but

[android-beginners] logcat issue

2008-09-08 Thread sudheer
Hello I am trying to develop an application which will try to extract the logs generated by system when it is executed. I try to use the exec command to start logcat at the start of my program and later want to collect the log messages generated during the application execution. when I tried

[android-beginners] Re: ActivityCreator

2008-09-08 Thread Ralf
Thanks for reporting this. I entered a bug to have the documentation updated accordingly. R/ On Wed, Sep 3, 2008 at 1:31 PM, JK [EMAIL PROTECTED] wrote: There seems to be an error on the online-tutorial: http://code.google.com/android/intro/hello-android.html#upgrading Section: Creating the

[android-beginners] Anyone needs android developers?

2008-09-08 Thread [EMAIL PROTECTED]
Anyone needs Android developers? please email me on [EMAIL PROTECTED] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Beginners group. To post to this group, send email to android-beginners@googlegroups.com

[android-beginners] Re: Android email client

2008-09-08 Thread Megha Joshi
2008/9/6 Christine [EMAIL PROTECTED] On Sep 6, 1:16 am, Megha Joshi [EMAIL PROTECTED] wrote: The Messaging app iis using SMSManager APIs, you can send SMS programatically using the same: http://code.google.com/android/reference/android/telephony/gsm/SmsMan... But that doesn't send

[android-beginners] Re: : Help Plzzz

2008-09-08 Thread DavidN
There is no magic solution. Read through the SDK docs on the site, try out all the Google API demos and examine their source code, watch the Google IO You-Tube videos on Android, order and read the published books on Android (one of which is by a frequent poster on this site - Mark Murphy), and

[android-beginners] Maps Not Showing?

2008-09-08 Thread ade
Hello developers, How do you resolve maps that shows only blank white screen (and grey grids.) ? For your info I am not behind any proxy, and my firewall's log shows nothing is blocked. I can access web pages and the Google Maps that comes in the emulator, but somehow cant show any map on my

[android-beginners] Re: Maps Not Showing?

2008-09-08 Thread Mark Murphy
How do you resolve maps that shows only blank white screen (and grey grids.) ? For your info I am not behind any proxy, and my firewall's log shows nothing is blocked. I can access web pages and the Google Maps that comes in the emulator, but somehow cant show any map on my test application.

[android-beginners] Re: logcat issue

2008-09-08 Thread DavidN
Quick and dirty approach might be to adb logcat -d yourLocalFile. This will dump to stdout and then redirect to a local file. Alternately, you might logcat -f to a file and then adb pull. On Sep 8, 2:12 am, sudheer [EMAIL PROTECTED] wrote: Hello I am trying to develop an application which will

[android-beginners] Intercepting Calls

2008-09-08 Thread Sheida
Hi, I have a question. Is there any support in Android's SDK for intercepting calls? for example, if I wanted to do something interesting when they call a particular number... Thank you Sheida. --~--~-~--~~~---~--~~ You received this message because you are

[android-beginners] Re: Andriod on Sidekick

2008-09-08 Thread Mike Wolfson
It shouldn't be lost in the discussion, that Microsoft now owns Danger. So, they certainly don't have an incentive to make porting Android to their device easy (in fact, I would imagine they would prefer it is hard). Doesn't mean it can't be done, just that I wouldn't depend on company(MS -

[android-beginners] Re: ADB Issues in Android 0.9 beta SDK

2008-09-08 Thread dfournier74
Bump Has anyone had this problem before? Thanks in advance for any help you can provide! On Sep 2, 7:52 am, dfournier74 [EMAIL PROTECTED] wrote: I believe I am having some issues with the ADB communicating to my emulator instance.  It appears that the adb does not reckognize the

[android-beginners] Re: Intercepting Calls

2008-09-08 Thread Megha Joshi
2008/9/8 Sheida [EMAIL PROTECTED] Hi, I have a question. Is there any support in Android's SDK for intercepting calls? for example, if I wanted to do something interesting when they call a particular number... For security reasons, you cannot intercept the incoming call in any way, except

[android-beginners] Re: Android email client

2008-09-08 Thread Christine
On Sep 8, 8:12 pm, Megha Joshi [EMAIL PROTECTED] wrote: It can send email through SMS to email  gateway. There is no email client in the current sdk , but the future sdks should have one. Thanks for the reply. I'll try to port a javamail based client for now. :-)