1 回答
TA贡献1793条经验 获得超6个赞
由于 Ahmed Ewiss 给出了正确答案,但没有创建一个我可以接受的答案,使用他的建议,这对于其他人来说是一个简单的模板,他们可以使用......
MAINACTIVITY.JAVA
package com.mycompany.rns;
imports are listed here...
public class MainActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Intent k = new Intent(this,MyService.class);
startService(k);
}
}
我的服务.JAVA
package com.mycompany.rns;
imports are listed here...
public class MyService extends IntentService {
public MyService(){
super("MyService");
}
@Override
protected void onHandleIntent(Intent intent) {
system.out.println("At fucking last!");
}
}
主文件
</activity>
<service
android:name=".MyService"
android:enabled="true"
android:exported="false" />
</application>
可行的解决方案是将 MainActivity.java 文件与 Service.java 文件分开。类文件。
添加回答
举报