应用程序工作正常,但在单击注销按钮时崩溃



我是安卓新手,当我点击注销按钮时应用程序崩溃。我不明白为什么。

我释放了 mp 播放器资源,但它仍然崩溃。

用于注销按钮

if(view==logoutbtn)
{
if (mp.isPlaying()) { mp.stop();mp.release();}
firebaseAuth.signOut();
finish();
Intent intent=new Intent(ProfileActivity.this,LoginActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
}

在当前活动上运行的函数是

request.setInterval(5000);
client.requestLocationUpdates(request, new LocationCallback() {
@SuppressLint("NewApi") @Override
public void onLocationResult(LocationResult locationResult) {
Location location = locationResult.getLastLocation();
if (location != null) {

play_ringtone();
play_flashlight();
send_location_message(location.getLatitude(), location.getLongitude());

}
}
}, null);

当我运行活动时,日志猫是:

W/MessageQueue: Handler (android.telephony.PhoneStateListener$1) {ba9c4a5} sending message to a Handler on a dead thread
java.lang.IllegalStateException: Handler (android.telephony.PhoneStateListener$1) {ba9c4a5} sending message to a Handler on a dead thread

短信功能是

private void send_location_message(Double latitude,Double longitude)
{
String msg = "Emergency!!nnLocationnn"+"https://www.google.com/maps/search/?api=1&query="+latitude+","+longitude ;
for (int i = 0; i < emergency_phones.size(); i++)
{
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(emergency_phones.get(i), null, msg, null, null);
Toast.makeText(ProfileActivity.this, "Message Sent To  "+emergency_phones.get(i)+"  "+latitude+" "+longitude, Toast.LENGTH_SHORT).show();
}
}
  1. mp.isPlaying((括在尝试捕获以避免空指针异常...

  2. 在 onDestroy 中也停止 request.setInterval(( 对象中使用的请求对象

  3. 在 OnDestroy 中释放或注销位置接收器,因为我可以看到您使用客户端。 requestLocationUpdates ,因为即使您的活动停止,广播接收器仍然存在,并且随着新位置更新,它将在里面运行代码,因此始终需要停止这些线程和 BroadCastReceivers

    1. 该错误日志是电话的,可能位于您的应用程序之外并且不相关...

相关内容

  • 没有找到相关文章

最新更新