I created new layout named splash.xml like below and put in in layout folder.

Then I create a class named Splash.java like below
package com.example.buttonproj;
import android.R;
import android.app.Activity;
import android.os.Bundle;
public class Splash extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.splash); //ERROR HERE
}
}
There is an error on setContentView(R.layout.splash). Can you tell me what is wrong? Thanks