Edit:
It seems my button styles are causing the issue.
Edit Code
buttonL.setOnTouchListener(new View.OnTouchListener() {
public boolean
Try this:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash);
Thread splash=new Thread(){
public void run(){
try{
sleep(2000);
}catch(Exception e){
e.printStackTrace();
}finally{
startActivity(new Intent(getApplicationContext(),StartMenu.class));
finish();
}
}
};
splash.start();
}
And your Manifest.xml: