gpt4 book ai didi

android.app.IntentReceiverLeaked : Activity com. example.brown

转载 作者:行者123 更新时间:2023-11-29 02:16:09 26 4
gpt4 key购买 nike

friend 的, 我在 map View 中遇到问题,最初我有 map View ,标题中有搜索选项,用于搜索我正在使用的内容这是我的搜索代码...

Intent intent = getIntent();

findViewById(R.id.map_search).setOnClickListener(

new OnClickListener() {
public void onClick(View v) {

onSearchRequested();
}
});

点击后执行下面的代码

       if (Intent.ACTION_VIEW.equals(intent.getAction())) {
//
word = intent.getDataString();

Log.v("Search2", word);
Cursor c = managedQuery(Constants.CONTENT_URI_MAPS, null,
Constants.BNAME + "='" + word + "'", null, null);

--------------

}我在这里从数据库中获取搜索列表数据。搜索选项提供搜索 map 结果很好,在搜索页面中,标题中再次有搜索选项并有后退按钮,当从 UI 或设备单击后退按钮时,它很好地返回到上一个 map View ,然后在第一个 map View 中再次返回按钮,当单击返回时抛出 Activitythread 异常,09-16 16:04:17.088: ERROR/ActivityThread(425): Activity com.example.brown.Bru_Maps_Result 泄露了最初在此处注册的 IntentReceiver android.net.NetworkConnectivityListener$ConnectivityBroadcastReceiver@43898578。您是否错过了对 unregisterReceiver() 的调用?我想我必须重写 Onpause()、OnReceive() 方法,但我不知道如何实现它。帮我解决这个问题。

最佳答案

某处您没有为相应的“registerReceiver”调用调用“unRegisterReceiver”方法。

registerReceiver API 被调用来监听广播 Intent ,你能检查一下你的代码中是否这样做了吗?

关于android.app.IntentReceiverLeaked : Activity com. example.brown,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3725884/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com