Утечка памяти - Android Studio - Location Manager - Отправка СМС - PullRequest
0 голосов
/ 24 марта 2020

Макет приложения

Я создаю приложение, которое получит местоположение пользователя с помощью Менеджера местоположений и отправит это местоположение с помощью SMS (с помощью намерения ОТПРАВИТЬ) нажатием кнопки. Когда я запускаю приложение на эмуляторе, оно работает нормально (но все еще показывает утечку памяти, для которой я использовал LeakCanary , чтобы увидеть утечки), но когда я запускаю его на устройстве реального времени, память начинает течь и приложение не работает. Я пытался искать утечки памяти, единственное, что я обнаружил, это то, что в основном это из-за плохого кодирования. Я прилагаю свой код здесь. Если кто-то может помочь, это было бы здорово! Причина, по которой я использую кнопку внутри Менеджера местоположений, заключается в том, что я хочу, чтобы местоположение обновлялось последовательно, поэтому при нажатии кнопки будет получено последнее обновленное местоположение!


import androidx.annotation.NonNull;
import androidx.appcompat.app.AppCompatActivity;
import androidx.core.app.ActivityCompat;
import androidx.core.content.ContextCompat;

import android.Manifest;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.location.Address;
import android.location.Geocoder;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.net.Uri;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

import com.example.gettinglivelocationinemptyactivity12.R;

import java.io.IOException;
import java.util.List;
import java.util.Locale;

public class MainActivity extends AppCompatActivity {

    private LocationManager locationManager;
    private LocationListener locationListener;
    private static final String TAG = "MainActivity";
    private String addressFinal = "";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        locationManager = (LocationManager) getSystemService(this.LOCATION_SERVICE);
        locationListener = new LocationListener() {
            @Override
            public void onLocationChanged(Location location) {
                //LatLng loc = new LatLng(location.getLatitude(), location.getLongitude());
                //Log.d(TAG, "onLocationChanged: " + loc);
                Geocoder geocoder = new Geocoder(getApplicationContext(), Locale.getDefault());
                try {
                    List<Address> addressList = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 1);
                    if(addressList.get(0).getAddressLine(0) != null){
                        String address = addressList.get(0).getAddressLine(0);
                        Log.d(TAG, "onLocationChanged: " + address);
                        addressFinal = address;
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                }
                //Log.d(TAG, "onCreate: " + addressFinal);
                Button button = (Button) findViewById(R.id.button);
                button.setOnClickListener(new View.OnClickListener() {
                    @Override
                    public void onClick(View v) {
                        Log.d(TAG, "onClick: ");
                        // Use format with "smsto:" and phone number to create smsNumber.
                        EditText editText = (EditText) findViewById(R.id.editText);
                        String smsNumber = String.format("smsto: %s", editText.getText().toString());
                        // Find the sms_message view.
                        // Get the text of the sms message.
                        String sms = addressFinal;
                        // Create the intent.
                        Intent intent = new Intent(Intent.ACTION_SENDTO, Uri.parse("sms:" + smsNumber));
                        intent.putExtra("sms_body", sms);
                        // If package resolves to an app, send intent.
                        if (intent.resolveActivity(getPackageManager()) != null) {
                            startActivity(intent);
                        } else {
                            Log.e(TAG, "Can't resolve app for ACTION_SENDTO Intent.");
                        }
                    }});
            }

            @Override
            public void onStatusChanged(String provider, int status, Bundle extras) {

            }

            @Override
            public void onProviderEnabled(String provider) {

            }

            @Override
            public void onProviderDisabled(String provider) {

            }
        };
        if (checkSelfPermission(Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && checkSelfPermission(Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
            // TODO: Consider calling
            //    Activity#requestPermissions
            // here to request the missing permissions, and then overriding
            //   public void onRequestPermissionsResult(int requestCode, String[] permissions,
            //                                          int[] grantResults)
            // to handle the case where the user grants the permission. See the documentation
            // for Activity#requestPermissions for more details.
            ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1);
        }
        else {
            locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 0, locationListener);
        }
    }
    @Override
    public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
        super.onRequestPermissionsResult(requestCode, permissions, grantResults);
        if(grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED){
            if(ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) == PackageManager.PERMISSION_GRANTED){
                locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000, 0, locationListener);
            }
        }
    }
}

Данные об утечке памяти Изображение

...