作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我在 onCreate()
MyService 中使用这段代码,它会在新线程中启动还是会在主线程中启动?
new Thread(new Runnable() {
@Override
public void run() {
startService(new Intent(this, MyService.class));
}
});
对不起,如果它很明显,但我是 android 的初学者。我研究了很多,但没有发现任何确定的东西。谢谢
最佳答案
我希望它在 UI 线程中运行,除非你在服务中创建了一个新的线程......但是你可以确认服务在不同的线程或 UI 线程中运行,比如
在Activity
的onCreate()
中启动Service
new Thread("myThread"){
public void run() {
Intent intent = new Intent(MainActivity.this, MyService.class);
startService(intent);
};
}.start();
并在服务的 onCreate() 中测试线程名称...
public class MyService extends Service {
@Override
public void onCreate() {
super.onCreate();
String name = Thread.currentThread().getName();
if(name.equals("myThread")) {
// service started in new Thread...
}
}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
}
关于android - 是否可以在新线程中启动服务?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20996379/
嘿。本周的一个教程,其中一个问题要求通过使用其他函数 formatLine 和 formatList 创建一个函数 formatLines,以格式化行列表。 我的代码是这样的; type Line =
我是一名优秀的程序员,十分优秀!