[android-beginners] Re: New to android

2009-09-12 Thread Mark Murphy
senrooy wrote: > I am studying the basic concepts of android for last one week. I am > from C/C++ (linux) background. Do I need java knowledge to handle > android applications? Generally speaking, yes. While there is the Native Development Kit (NDK), it is designed to create extension (JNI) libra

[android-beginners] Re: New to Android

2009-12-02 Thread swarup
If you not behind a proxy(e.g. office networks), then your emulator should be able to access internet w/o any additional setup. If you are behind any proxy, then check http://d.android.com/guide/developing/tools/emulator.html#proxy On Dec 2, 11:20 am, raj wrote: > how to access internet on emula

[android-beginners] Re: New to Android

2009-12-06 Thread jeremynealbrown
Be sure to add a permission to your manifest file: For more info: http://developer.android.com/guide/topics/manifest/uses-permission-element.html -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android

[android-beginners] Re: New to Android

2010-06-15 Thread Aaron
Thanks, fixed that, but am still unable to get the program to actually display the resulting calculation upon clicking the button. Here's my main.xml file if it helps: http://schemas.android.com/apk/res/ android" android:layout_width="fill_parent" android:layout_height="fill_parent">

[android-beginners] Re: New to Android

2010-06-15 Thread Aaron
Nevermind, moved my updateDisplay(); line to within the onClick portion. Now everything is running fine, well as intended that is :) On Jun 15, 10:04 am, Aaron wrote: > Thanks, fixed that, but am still unable to get the program to actually > display the resulting calculation upon clicking the but

[android-beginners] Re: New to Android

2008-11-08 Thread Dennis W.
Try the "Notepad Tutorial" from http://code.google.com/android/intro/tutorial.html. It's a good starting point to developing apps for Android. On 8 Nov., 00:57, JT <[EMAIL PROTECTED]> wrote: > Hey, > I have just started messing around with my g1 and I was wondering if > anyone has any good tutor

[android-beginners] Re: New to Android

2008-11-08 Thread luyen
You can try with this tutorial: How to Install the Android SDK on Windows XP and Create an Application that Runs in the Android Emulator http://androidcore.com/index.php?option=com_content&view=article&id=216:how-to-install-the-android-sdk-on-windows-xp&catid=43:android-tutorial&Itemid=106 It's

[android-beginners] Re: New to Android Install procedures

2008-10-03 Thread Megha Joshi
You will need the Eclipse ADT plugin if you are going to use Eclipse for your development. If you are planning to use command line tools for developing your apps, then you don't need to install ADT plugin. You will find it easier if you first go through the - Installing the SDK, Developing and Deb

[android-beginners] Re: New to Android/Java, Creating a Test Program

2009-01-26 Thread Mark Murphy
coolbho3k wrote: > Okay, so I am creating a test program (my version of "hello world" > every time I start developing on a new platform) that flashes the > numbers 0 through 500 on the screen rapidly. Here's what I have in my > main Java file so far. Problem is, it won't display anything. Anyone >

[android-beginners] Re: New to Android/Java, Creating a Test Program

2009-02-21 Thread coolbho3k
Thanks for your help. This reply is one month late as I haven't had time for further Android development learning until now. This is what I've got so far. It successfully increments from 0 to 1, however, I want to know how I can continuously call handler.postDelayed to increment all the way up to

[android-beginners] Re: New to Android/Java, Creating a Test Program

2009-02-22 Thread Mark Murphy
coolbho3k wrote: > Thanks for your help. This reply is one month late as I haven't had > time for further Android development learning until now. This is what > I've got so far. It successfully increments from 0 to 1, however, I > want to know how I can continuously call handler.postDelayed to > i

[android-beginners] Re: New to Android/Java, Creating a Test Program

2009-02-22 Thread coolbho3k
Thank you. One more problem, however. Within updateCounter() I can no longer make references to the textView I defined in onCreate. Sorry, I'm a Java beginner. On Feb 22, 7:56 am, Mark Murphy wrote: > coolbho3k wrote: > > Thanks for your help. This reply is one month late as I haven't had > > ti

[android-beginners] Re: New to Android/Java, Creating a Test Program

2009-02-22 Thread Mark Murphy
coolbho3k wrote: > Thank you. One more problem, however. Within updateCounter() I can no > longer make references to the textView I defined in onCreate. Sorry, > I'm a Java beginner. If you are new to Java, I would really recommend learning basic Java development *outside* of Android first. Andro

[android-beginners] Re: New to Android/Java, Creating a Test Program

2009-02-22 Thread coolbho3k
Thanks very much, this worked. Now I have a timer counting from 0 to 500. Yeah, I'm going to study Java more. On Feb 22, 2:35 pm, Mark Murphy wrote: > coolbho3k wrote: > > Thank you. One more problem, however. Within updateCounter() I can no > > longer make references to the textView I defined i