Обновление маркеров при изменении местоположения Google Map v2 Android
Я хочу обновить текст всех маркеров, т. Е. Маркер с красным кружком в изображении при изменении местоположения. Я попробовал идею Removing all Previous Markers & adding all of them again with Updated Text
. Но при этом выдается ошибка исключения:::: Недостаточно памяти, и я также пытался обновить только текст всех маркеров, но он не обновляется.
Вот мой XML-файл для пользовательского макета маркера.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/relativeTapMarker"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tapmarker" />
<TextView
android:id="@+id/txtTapMarkerDist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="0"
android:paddingBottom="5dp"
android:textColor="@color/white_selector"
android:textSize="12sp" />
</RelativeLayout>
</LinearLayout>
Вот мой файл кода, в котором я выкладываю текст об изменении местоположения.
private BroadcastReceiver broadcastReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
data(intent);
}
};
private void data(Intent intent)
{
Log.e("BROADCAST RECIEVER CALLED","///////////////////// BROADCAST RECIEVER CALLED ////////////////////////");
Location location = (Location) intent.getParcelableExtra("location");
if(location != null)
{
txtTapMarkerDist.setText(new DecimalFormat("###").format(getDistance(curr_lat, curr_long, tapmarkerlat,tapmarkerlong)));
}
}
Я регистрирую этот получатель, как показано ниже.
registerReceiver(broadcastReceiver, new IntentFilter(BROADCAST_ACTION));
Я получаю местоположение идеально, поэтому код BroadcastReceiver работает отлично. А также Одиночный маркер Маркер в синем обновляет текст с местоположением. Но проблема заключается в обновлении текста нескольких маркеров с изменением местоположения... Любой Пожалуйста, помогите мне выйти из этой проблемы. Любая помощь приветствуется.