我想在位置更改时更新所有标记文本,即图像中带有红色圆圈的标记。我尝试了 .But 的想法,Removing all Previous Markers & adding all of them again with Updated Text
但这样做给了我 :::: Out Of Memory Exception 的错误,我还尝试仅更新所有标记的文本,但它没有更新。
这是我的用于标记自定义布局的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代码工作正常。此外,蓝色标记的单个标记正在更新带有位置的文本。但问题在于通过位置更改更新多个标记的文本......任何人请帮我解决这个问题。感谢任何帮助。