[android-beginners] Placing a call to the emulator

2008-09-16 Thread anu
I have been trying to place a call to the emulator. So far, in the beta 0.9 version, I have found no API (as was in the m15 version) that will place the call automatically. I have been trying to use the Intent action CALL_ACTION so far, without success. Please let me know if I am on the right trac

[android-beginners] Re: problem adding the android plugin to he eclipse 3.4 , plz help

2008-09-16 Thread enchanters
I too faced the same problem on Fedora 9 installed ECLIPSE. Please let me know if I can install it throught the local copy on my HDD. I dont see any help content for the same. On Sep 12, 11:40 pm, "Megha Joshi" <[EMAIL PROTECTED]> wrote: > Try this: > > http://code.google.com/android/kb/trouble

[android-beginners] :Help needed

2008-09-16 Thread Imran
Hi hey... how can i send a Cursor Object to my sub-Activity... if possible give me some sample code... Thanks in Advance for any Replays!!! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "

[android-beginners] Re: Java-Less Android Development? Dalvik documentation?

2008-09-16 Thread Jordan Innovations
Well, I took a different turn, I am now working on a scripting language, that you do not even need to compile, you can run it directly into the emulator (or the device), the runtime will be an android service: http://nader.shalabi.googlepages.com/android.robotics The scripting service language can

[android-beginners] Can Android use as base core in mobile handset development?

2008-09-16 Thread Masoud
Hi I'm new to Android. I read the docs but I didn't find my answer. My question is, Can we use Android as core platform in a mobile handset? Is Android a platform same as J2ME (or maybe more advanced) and can't used for developing complete software, menu tree, screens and features of a mobile ha

[android-beginners] ANdroid coding guidelines

2008-09-16 Thread enchanters
Where Can I find the Android PDF to start my coding.I do not know JAVA but I know C and C++ and linux internals. Is it a must to learn JAVA and start coding. I do not know XML as well.. Please give me a hint on how to start working on Android and recommend some material or PDF to start working.

[android-beginners] Re: Placing a call to the emulator

2008-09-16 Thread Mark Murphy
anu wrote: > I have been trying to place a call to the emulator. So far, in the > beta 0.9 version, I have found no API (as was in the m15 version) that > will place the call automatically. I have been trying to use the > Intent action CALL_ACTION so far, without success. Please let me know > if I

[android-beginners] Re: ANdroid coding guidelines

2008-09-16 Thread Mark Murphy
enchanters wrote: > Where Can I find the Android PDF to start my coding. Documentation is available at: http://code.google.com/android/documentation.html It is also included with the SDK when you download it. It is not, however, in PDF form -- it's in HTML for use from your favorite Web brows

[android-beginners] Re: Can Android use as base core in mobile handset development?

2008-09-16 Thread Mark Murphy
Masoud wrote: > I'm new to Android. I read the docs but I didn't find my answer. My > question is, Can we use Android as core platform in a mobile handset? Yes. After all, HTC and other firms are using it as a core platform in a mobile handset, and other people have gotten it to work as a replac

[android-beginners] Re: problem adding the android plugin to he eclipse 3.4 , plz help

2008-09-16 Thread sukanto
Hi all, the issue is resolved The best way is to go for Eclipse EE editions 3.4 . It contains some extra packages for android which are missing in Ecliplse classic edition. That's the reason it throws those errors of dependencies. to see all the available eclpse versions plz go to this link: http:

[android-beginners] Re: Using google Maps

2008-09-16 Thread Jordan Innovations
Check this out: http://nader.shalabi.googlepages.com/androidapplications On Fri, Sep 12, 2008 at 5:37 PM, Hans <[EMAIL PROTECTED]> wrote: > > Anyone has some sample code which i can look at for me to start off > interfacing with Maps. In my app i will need to get from place A to B > showing me wi

[android-beginners] conn.connect() throw exception

2008-09-16 Thread Hw3699
I use the image sample : try { URL aURL = new URL(" http://www.anddev.org/images/tiny_tutheaders/weather_forecast.png";); URLConnection conn = aURL.openConnection(); conn.connect(); } and "conn.connect(); " throw an exception. Can anyon

[android-beginners] Software Articles Collection

2008-09-16 Thread [EMAIL PROTECTED]
Hi Everyone. Here's the latest collection of software articles from AllPCNews. Enjoy! :) PHP - Web Application Development http://www.allpcnews.com/2008/09/15/php-web-application-development/ Mozilla CEO: Chrome was Inevitable http://www.allpcnews.com/2008/09/02/mozilla-ceo-chrome-was-inevitable

[android-beginners] New to android

2008-09-16 Thread sarika india
hello to all, i am new to android learning step by step Thanks --~--~-~--~~~---~--~~ 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: problem adding the android plugin to he eclipse 3.4 , plz help

2008-09-16 Thread sukanto
The issue is solved, The best way is to go for Eclipse EE editions 3.4 . It contains some extra packages for android which are missing in Ecliplse classic edition. That's the reason it throws those errors of dependencies. to see all the available eclpse versions plz go to this link: http://www.ecl

[android-beginners] Re: problem adding the android plugin to he eclipse 3.4 , plz help

2008-09-16 Thread sukanto
The best way is to go for Eclipse EE editions 3.4 . It contains some extra packages for android which are missing in Ecliplse classic edition. That's the reason it throws those errors of dependencies. to see all the available eclpse versions plz go to this link: http://www.eclipse.org/downloads/

[android-beginners] Re: conn.connect() throw exception

2008-09-16 Thread Mark Murphy
> I use the image sample : > > try { > URL aURL = new URL(" > http://www.anddev.org/images/tiny_tutheaders/weather_forecast.png";); > URLConnection conn = aURL.openConnection(); > conn.connect(); > } > > and "conn.connect(); " throw an exce

[android-beginners] Re: conn.connect() throw exception

2008-09-16 Thread Hw3699
add INTERNET permission , but it still throws an exception. Please advise. http://schemas.android.com/apk/res/android"; package="org.anddev.android.galleryexample"> On Sep 16, 2:26 pm, "Mark Mur

[android-beginners] Re: conn.connect() throw exception

2008-09-16 Thread Mark Murphy
> add INTERNET permission , but it still throws an exception. Please > advise. What is the exception? You can get a stack trace via adb logcat *:E from a Linux shell (or some equivalent stuff in Windows or an IDE). -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to

[android-beginners] Re: :Help needed

2008-09-16 Thread Megha Joshi
It is not recommended to send the Cursor object between Activities. Your sub-Activity, might not be int he same app, and so the Cursor would not be relevant. The recommended way to do this is to pass a content URI to the sub Activity and let the sub-Activity do the query by itself. If you know for

[android-beginners] Re: ANdroid coding guidelines

2008-09-16 Thread jtaylor
I recall Dan Morrill at Google I/O saying that just as in other disciplines one doesn't know the tool very well, but knows what tool needs to be used at what time. In Android, when you need the Location API, then that's when you delve into the intricacies of it and not before. It's good to get a g

[android-beginners] Re: ANdroid coding guidelines

2008-09-16 Thread sukanto
hi, basic java knowledge is the most essential thing to start coding in ANDROID as it is build on java, but i believe if u have good OOP concept u can start doing simple staff and build ideas around on the go. I found out this e-book , might be helpful for u http://www.ebooksbay.org/KnowFree/20

[android-beginners] Re: Does Android support the linux 2.6.13 kernel?

2008-09-16 Thread sukanto
The SDK will work for 2.6.* ... so keep going [:)] On Sep 13, 12:35 pm, Thinking <[EMAIL PROTECTED]> wrote: > Thanks in advance. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Group