• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps About Android Development

Hey guys was wondering if you could help me, im new to the JAVA programming language just started in fact i have installed the following...

android-sdk-windows-1.1_r1
apache-ant-1.7.1-bin
droiddraw-r1b11
jdk-6u12-windows-i586-p
Eclipse Ganymede (latest)

i have installed all the android updates for eclipse but every time i start a new android project to learn i keep getting a red cross at the side of the package telling me there is an error :|

im a n00b and i have no idea hope someone can help me :( i want to start ASAP here is where the error is...

Code:
package com.android.hello.android.hello;

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

public class android extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }
}

Thanks :)
 
Back
Top Bottom