[android-beginners] downloadable tutorial resources?

2010-07-12 Thread Operand Zombie
I'm heading to the airport tomorrow, and will be travelling for about
14 hours.  Was hoping to use that boring time to start reading more
about Android... but without internet access, most of the existing
resources out there will be unavailable to me.

Does anybody know of downloadable tutorials oriented towards people
with some programming experience, but no experience with the Android
SDK - videos, pdfs, docs, etc?

Thanks in advance for any responses!

-- 
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 email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


[android-beginners] Re: Issues with Hello World

2009-06-09 Thread Zombie

press the menu one more timeyou'll get it

On Jun 7, 7:03 am, Fahd  wrote:
> Hi All,
>
> I am following the hello world example and when I run it through
> eclipse, the emulater starts showing android...
> then it comes in to the system and asks me to press menu to unlock.
> When I do it, it justs unlocks but there no helloworld or application
> window, just the normal android desktop! Am I missing somthing??
>
> Following is the code I am running (which is the copy of the example)
>
> package com.example.helloandroid;
>
> import android.app.Activity;
> import android.os.Bundle;
> import android.widget.TextView;
>
> public class HelloAndroid extends Activity {
>     /** Called when the activity is first created. */
>     @Override
>     public void onCreate(Bundle savedInstanceState) {
>         super.onCreate(savedInstanceState);
>         TextView tv = new TextView(this);
>         tv.setText("Hello, Android");
>         setContentView(tv);
>         //setContentView(R.layout.main);
>     }
>
> }
>
> Why isnt the helloworld window coming?? Any help plss
>
> Fahd

--~--~-~--~~~---~--~~
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
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---