如何为Android应用程序创建标题屏幕?例如。当应用程序加载像Facebook

时间:2013-07-31 16:55:08

标签: java android xml eclipse

您好我正在开发一个应用程序,当应用程序启动时我找不到如何创建标题/加载屏幕?它是一项新活动还是一项功能?感谢任何帮助。

2 个答案:

答案 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
       }
}

如需帮助,您可以尝试thisthis