0
您好我正在開發一個應用程序,我找不到如何創建標題/加載屏幕時,應用程序啓動?這是一項新的活動還是一項功能?任何幫助表示感謝。你如何創建一個Android應用程序的標題屏幕?例如。當應用程序加載像Facebook
您好我正在開發一個應用程序,我找不到如何創建標題/加載屏幕時,應用程序啓動?這是一項新的活動還是一項功能?任何幫助表示感謝。你如何創建一個Android應用程序的標題屏幕?例如。當應用程序加載像Facebook
你想要一個splash屏幕。谷歌有一些關於它的話題。
它實際上所謂的閃屏,它應該是這樣的:
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
}
}
你的意思是一個閃屏? [Here's](http://cyrilmottier.com/2012/05/03/splash-screens-are-evil-dont-use-them/)一個意見。 – keyser