vote up 0 vote down star
2

What is the best way to learn Android? I'm reading Rogers's at al.'s book Android Application Development. However, as I tried the following code, nothing outputs except a mobile phone:

package org.qwerty.com;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HelloWorld extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        TextView tv = new TextView(this);
        tv.setText("Hello, Android");
        setContentView(tv);
    }
}

I tried also search for the Dalvik Debug Monitor http://stackoverflow.com/questions/1108820/android-emulator-output but I couldn't find the option where I can open my hello android project.

flag

5 Answers

vote up 0 vote down check

The "Professional Android Development" from Wrox by Reto Meier is in my opinion the best book to start learning Android from. Besides the Google documentation

link|flag
vote up 0 vote down

If it's "outputting" a mobile phone then it's probably starting up the emulator. Give it a minute or two as it's actually a virtual machine running a whole OS in there. Your app should show up once it's finished booting.

The emulator should look something like this:

new emulator

or this: old text

link|flag
I have waited half an hour but still I can't see my application anywhere. – Jaska Sep 28 at 6:29
Well what DO you see? – fiXedd Sep 29 at 0:11
It was just an emulator window. I had some problems with Built Target but now the code works well. – Jaska Sep 29 at 7:25
vote up 2 vote down

I learned Android with the Google tutorials located here.

Scroll down on the left side and look for "Tutorials and Sample Code"

link|flag
vote up 0 vote down

You may be interested in the following articles on MobiForge:

Getting Started with Android Development

Understanding User Interface in Android - Part 1: Layouts

Understanding User Interface in Android - Part 2: Views

link|flag
2  
I would also suggest reading the development guides on android.com – cjstehno Sep 24 at 15:30
I just read that article Getting Started with Android Development. I can compile my code and run it but I don't see any window like Figure 4 nor anything which displays "Hello Android". – Jaska Sep 25 at 6:25
vote up 0 vote down

You may find this article useful. I just read it and it made sense.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.