Hello,
I have just installed Eclipse, ADT and SDK. Everything works fine, no errors. I have installed also all the components.
I did the HelloWorld tutorial :
and run the project. My android virtual device starts, there are no compile errors and on the android screen there is only an ANDROID_ text (default screen). What I am doing wrong ?
Thanks in advance.
I have just installed Eclipse, ADT and SDK. Everything works fine, no errors. I have installed also all the components.
I did the HelloWorld tutorial :
Code:
package com.example.helloandroid;
import android.app.Activity;
import android.os.Bundle;
public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
Thanks in advance.