Step 1: Create A Splash Activity
Step 2: Make it Launcher Activity in Manifest
Step 3: Design your Splash Activity
Step 4: Write This code on SplashActivity.java
setContentView(R.layout.activity_main);
@Override
public void run() {
try {
sleep(3000);
}
catch ( Exception e ){
e.printStackTrace();
}
finally {
Intent intent = new Intent(SplashActivity.this, MainActivity.class);
startActivity(intent);
finish();
}
}
}; thread.start();
}
}
}
}
}; thread.start();
}
}
একটি মন্তব্য পোস্ট করুন
0 মন্তব্যসমূহ