Я новичок в Android, приложение вылетает, когда я нажимаю кнопку выхода из системы. Я не понимаю, почему.
Я освободил ресурсы плеера 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);
Logcat, когда я запускаю активность:
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
И функция sms:
private void send_location_message(Double latitude,Double longitude)
{
String msg = "Emergency!!\n\nLocation\n\n"+"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();
}
}