我想在位置更改图片中更新所有标记文字,即带红圈标记。我尝试了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 代码正常运行。此外单个标记蓝色标记正在更新带位置的文本。但问题在于使用位置更改更新多个标记的文本 ... 任何一个请帮我解决这个问题。任何帮助都是赞赏的。