- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个绑定(bind)服务,它会在需要时转到前台。
这是我所拥有的简化版本:
class MyService extends Service {
private static final ServiceConnection serviceConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName name, IBinder serviceBinder) {
instance.bound();
}
@Override
public void onServiceDisconnected(ComponentName name) {
instance.unbound();
}
};
private static MyService instance;
public MyService() {
instance = this;
}
public static boolean bind(final Context context) {
final Intent intent = new Intent(context, MyService.class);
return context.bindService(intent, MyService.serviceConnection, Context.BIND_AUTO_CREATE);
}
public static void unbind(final Context context) {
context.unbindService(MyService.serviceConnection);
}
@Override
public void onTaskRemoved(Intent rootIntent) {
// not being called
}
@Override
public boolean onUnbind(Intent intent) {
// not being called
}
private void bound() {}
private void unbound() {
// not being called
}
}
然后在我的 Activity 中我只是这样做来绑定(bind):
MyService.bind(this);
这是解除绑定(bind):
MyService.unbind(this);
问题是我似乎无法知道用户何时关闭了最近的 Activity 。
这是我尝试过的:
onDestroy
方法:不,没有被调用onPause
/onStop
方法:无法真正区分滑动情况和直接进入后台,因为 isFinishing()
在所有情况下都会导致 false
。onTaskRemoved
或 onUnbind
方法:未被调用AndroidManifest.xml
中,在服务元素中添加 android:stopWithTask="true"
:这确实会在滑动 Activity 时终止我的服务,但是 它导致:MyActivity 泄露了 ServiceConnection
。不确定为什么,但我的猜测是我没有机会调用 unbindService()
。我做错了什么或者我错过了什么?
谢谢。
最佳答案
正如 mklimek 已经提到的,onTaskRemoved()
是解决此问题的方法。
我在一个项目中使用它,该项目具有由 Activity 启动和绑定(bind)的绑定(bind)服务。以下是各个部分(为了安全起见,我将添加一些上下文):
Activity 从 onCreate()
调用自定义 startService()
和 bindService()
辅助方法:
private void startService() {
Intent myServiceIntent = new Intent(this, packageName.MyService.class);
startService(myServiceIntent);
}
private void bindService() {
mServiceConnection = new ServiceConnection() {
@Override
public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
mService = MyServiceListener.Stub.asInterface(iBinder);
try {
mService.registerCallback(myServiceCallback);
mService.doSomething();
} catch (RemoteException e) {
MLog.w(TAG, "Exception on callback registration; Service has probably crashed.");
}
}
@Override
public void onServiceDisconnected(ComponentName componentName) {
mService = null;
}
};
if(!myServiceIsBound) {
Intent myServiceIntent = new Intent(this, packageName.MyService.class);
bindService(myServiceIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
myServiceIsBound = true;
// service is now bound
} else {
// service has already been bound
}
}
现在,对于 Service 类:在它的 onCreate()
中,我显示一个通知(运行后台服务所需的 afaik)并设置 Binder:
@Override
public void onCreate() {
super.onCreate();
// Setup Binder for IPC
mBinder = new MyServiceBinder();
mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);
[...display notification code...]
}
服务接口(interface)(告诉我这是否有趣,否则我就把它放在这里):
private class MyServiceBinder extends MyServiceListener.Stub {
@Override
public void registerCallback(MyServiceCallback callback) throws RemoteException {
[...]
}
// further methods for the service interface...
}
我的 onTaskRemoved()
和其他生命周期方法如下所示:
@Override
public void onTaskRemoved(Intent rootIntent) {
super.onTaskRemoved(rootIntent);
// do something adequate here
}
// Lifecycle management
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_REDELIVER_INTENT;
}
// Binding
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
@Override
public boolean onUnbind(Intent intent) {
return super.onUnbind(intent);
}
每次我从最近的应用程序列表中滑动 Activity 时,我的 onTaskRemoved()
都会被调用。您确定未调用您的 onTaskRemoved()
方法(您是否在其中放置了一些日志记录代码)?还要确保在其中调用 super.onTaskRemoved()
方法。
除了我将 ServiceConnection 设置和服务绑定(bind)代码放入 Activity 之外,我们的代码看起来非常相似。您将很多这种逻辑移到了服务本身。
我只能猜测这可能是 Service 连接泄漏的问题,因为您的 ServiceConnection 是 Service 类的静态成员,并且您从 ServiceConnection 中维护对 Service 的引用(通过您的“实例” “多变的)。我不确定,但似乎两个链接都没有断开,当 Activity 终止时。请注意,在我的代码中,ServiceConnection 是 Activity 的成员,为了安全起见,我清除了 onServiceDisconnected()
中对 mService
的引用。或许您可以稍微重构一下,将 Activity 终止时无法进行 GC 处理的引用考虑在内。
关于android - 当 Activity 从最近的 Activity 中被刷掉时,优雅地清理绑定(bind)服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35459194/
我需要为元素属性动态构建 XPath 查询,其中属性值由用户提供。我不确定如何清理或清理此值以防止 XPath 等同于 SQL 注入(inject)攻击。例如(在 PHP 中): xpath("//m
问题很简单:在使用 PHPmailer 类时我应该使用任何类型的清理吗? 我制作了使用 phpmailer 类发送电子邮件的简单发送邮件表单。目前我只使用“htmlspecialchars”进行清理(
你可以在python中创建一个在for循环退出时运行清理代码的迭代吗?就像是: from random import randint class Iterable: def __iter__(
假设我定期将数据插入 SQLite 数据库,然后清除前 50% 的数据,但我不清理。 我现在是否有类似文件前 50% 的清零页面之类的东西?如果我添加另一批数据,我是否正在填写那些清零的页面? 手册中
我有一堆 HTML 代码,我想在其中删除所有 HTML 标记。 我认为 Regex(正则表达式)可以做到这一点。通过搜索和替换,我将如何执行此操作? 我尝试了 ,我认为 * 是通配符,但显然不是。
我仍在学习 Haskell,我想知道是否有一种不太冗长的方法来使用 1 行代码来表达以下语句: map (\x -> (x, (if mod x 3 == 0 then "fizz" else "")
我需要怎么做才能正确清理/转义程序化SSH命令中输入的参数? 例如,路径参数- public boolean exists(String path) { try { Chann
这个问题已经有答案了: How to clear the canvas for redrawing (25 个回答) 已关闭10 个月前。 我目前正在尝试创建一个带有雨滴落下的 Canvas ,我唯一
我目前正在使用此过程来清理/过滤用户输入的评论 -> 这个是用来去掉斜线的……和 if (get_magic_quotes_gpc()) { function stripslashe
是否可以在 portal_setup 中删除旧的导入配置文件。 目前,我的网站上有许多可追溯到 2009 年的条目:: import-all-profile-Products.Archetypes_
假设我有多个指令,包括以下内容: ...template content... ...template content... 你如何销毁指令?通常我会在 jquery 中做一些我 $('#2').re
我正在开发一个可移植java应用程序,它可以在用户的PC(Windows XP)上动态生成一些文件。现在,我想要的是在java程序退出后删除这些临时文件。显然,java的文件删除机制是不可信的。即
我有一个 argv c 程序,它反转单词,并查看它是否是回文。我只是想清理输出并让它打印原始输入而不是相反的输入,但由于它是 argv,我似乎不知道该怎么做。 int main(int argc, c
我的网页上有一篇用 markdown 写的文章,我想在索引页上显示一份简短的简历。 问题是正文有markdown,我想在简历上显示纯文本。 例如: Article text: Hello people
在下面的代码片段中,可以做些什么来a)让编译器安静,b)清理交叉的指针困惑? extern struct tree *sintablein[sintablesize]; struct tree *(*
我试图弄清楚 WeakHashMap 在垃圾收集后如何清理。正如你们中许多人可能知道的那样,当 WeakHashMap 条目的键被垃圾回收时,它会自动删除。但是,例如,如果我做这样的事情: List>
我对构建的理解是,它只编译上次构建中编辑过的Java文件,而干净构建将删除所有类文件并重新编译所有文件。那么,当单独构建就足以满足我提供最新版本的类文件的需要时,干净构建的效用是什么? 最佳答案 有时
是否有任何简单的(内置的、附加的、开源的或商业的)在 Postgresql(主从)上进行复制,以便在复制时清理从属内部的数据以符合 PCI 合规性? ETL工具怎么样?它不一定是瞬时的……最多一个小时
我有一个将数据保存到 MySQL 数据库的网站 在将 HTML 插入 MySQL 或在我的网站上显示它时,我应该转义 HTML 吗? 理想情况下,我想将原始 HTML 输入到我的数据库中,并在每次从中
我知道我已经asked一个关于 sanitizer 和转义的问题,但我有一个问题没有得到回答。 好了,到此为止。如果我有一个 PHP 脚本并且我 GET用户输入和SELECT它来自 mySQL 数据库
我是一名优秀的程序员,十分优秀!