I am trying to figure out how Android works when it comes to lifecycle issues.
I have decided to have a long-running Service to hold my TCP-connections and other stuff.
我有一个活动,即启动活动。 这项活动开始提供服务,然后,我用一个顿子来否认这项活动。 然后,我再次提出同样的建议/行动,从而再次执行开办服务。
然而,我预计该处仍然活着(没有被叫到底),但该处仍在采用加泰特方法。
为什么?
www.un.org/Depts/DGACM/index_spanish.htm
@Override
protected void onCreate(android.os.Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.startup);
startService(new Intent(StartupActivity.this, SamcomService.class));
registerReceiver(connectionReceiver, new IntentFilter("STARTUP_PROGRESS_MESSAGE"));
registerReceiver(connectionReceiver, new IntentFilter("STARTUP_FINISH"));
final Button button = (Button) findViewById(R.id.buttonExit);
button.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
finish();
}
});
}
<>STEP> 2 我向纽芬兰报到,并叫作活动。
<>STEP> 3) 我再次发出信号,活动现场再次被执行,从而启动同一服务。
现在,当我开始第二次工作时(,我检查了)。 我亲眼看到了在被叫作消防局时所展示的Toast,我也看到该处所创建的通知(并去除)。
然而,该地国第二次被处决。 现在我是否有不止一个部门同时运作?