您好我正在开发一个应用程序,当应用程序启动时我找不到如何创建标题/加载屏幕?它是一项新活动还是一项功能?感谢任何帮助。
答案 0 :(得分:1)
您想要一个splash屏幕。谷歌上有很多关于它的主题。
答案 1 :(得分:0)
它实际上叫做启动画面,应该是这样的:
class SplashScreen extends Activity{
/* in oncreate do all the function u want and after that finish this activity*/
public void oncreate(){
new BackGroundProcess.execute(arguments)// async task to load data
intent i = new Intent(SplashScreen.this,OtherActivity.class);
startActivity(i);
finish();
}
}
class BackGroundProcess extends AsyncTask<arguments>
{
public onPreExecute(){
// start your progress dialog here
}
public doInBackground(){
//loadDataHere
}
public onPostExecute(){
// stop your progress dialog here
}
}