0

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

4

2 回答 2

1

你想要一个屏。谷歌上有很多关于它的主题。

于 2013-07-31T16:57:59.713 回答
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
       }
}

寻求帮助,你可以试试这个这个

于 2013-07-31T17:07:22.953 回答