在我的应用程序中,我需要从互联网上获取数据。所以我需要在启动画面的后台处理一个方法,并且在启动画面消失之后也是如此。
public class Splash_Screen extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash__screen);
ProgressBar p_bar=(ProgressBar)findViewById(R.id.progressBar1);
Thread thread=new Thread(new Runnable() {
@Override
public void run()
{
data_receiver receiver=data_receiver.getInstance();
receiver.access_parser();
}
});
thread.start();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent main_window=new Intent(com.burusoth1990.advertise.Splash_Screen.this,com.burusoth1990.advertise.MainActivity.class);
startActivity(main_window);
}
}, 5000);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_splash__screen, menu);
return true;
}
}
启动画面需要工作5秒,但是在启动闪屏活动并打开新活动后,receiver.access_parser()方法需要在后台工作。这是我的代码,但它会引发错误。
答案 0 :(得分:0)
Android中的后台操作,尤其是那些与单个活动没有直接关联的操作,通常使用 Service 或 IntentService 来实现。请参阅这些文档页面: