uygulama başlarken kendi logomu koymaya çalıştım olmadı
public class Acilis extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.acilis);
Thread acilis = new Thread (){
public void run (){
try{
sleep(5000);
startActivity(new Intent("com.mzaim.hesapmakinem;"));
}catch(InterruptedException e){
e.printStackTrace();
}finally{
finish();
}
}
};
acilis.start();
}
}
sorun nedir yardım