gpt4 book ai didi

android - 谷歌地图 : Different CustomInfowindow for each marker

转载 作者:行者123 更新时间:2023-11-30 00:24:31 24 4
gpt4 key购买 nike

我有一个 Android 应用程序,其中包含一个 MapsActivity 以使用 GoogleMaps 显示许多标记。

标记是通过 Timestamp 对象创建的

时间戳对象属性

(double lat,lon;
int stepSum;
long timeMilli;
String state=null;)

存储在 Firebase 数据库中。

因此,我从数据库中检索每个时间戳,并尝试使用上述属性创建一个标记。我的问题是,当我单击标记时,会显示自定义信息窗口,但所有标记都相同。它应该针对不同的标记显示不同的属性。

为什么会这样

drawMarkers() 方法中,我在创建新标记时实例化了一个单独的信息窗口,并将该信息窗口设置为带有 mMap.setInfoWindowAdapter(infoWindow); 的 GoogleMap 对象。

结果 mMap.setInfoWindowAdapter(infoWindow); 被调用的次数与创建标记的次数一样多,最后只有最后一个信息窗口幸存下来。这就是问题所在,但我无法找到解决方案。

如何实现一个信息窗口,当我单击一个标记时它会显示某种数据,而当我单击另一个标记时它会显示不同类型的数据(相同的布局,不同的属性)。

一个有效的例子也可以。

CustomInfoWindow 类

 private class CustomInfoWindow implements GoogleMap.InfoWindowAdapter{

private String title=null,hour=null,state=null;
private int steps=0;

public CustomInfoWindow(){}

public CustomInfoWindow(String title, String hour, String state, int steps) {
this.title = title;
this.hour = hour;
this.state = state;
this.steps = steps;
}

@Override
public View getInfoWindow(Marker marker) {
return null;
}

public void setState(String state) {
this.state = state;
}

@Override
public View getInfoContents(Marker marker) {
LayoutInflater inflater = LayoutInflater.from(getApplicationContext());
View root = inflater.inflate(R.layout.marker_infowindow,null);
TextView titleTextView = (TextView) root.findViewById(R.id.infowindow_title);
TextView hourTextView = (TextView) root.findViewById(R.id.infowindow_hour);
TextView stepsTextView = (TextView) root.findViewById(R.id.infowindow_steps);
TextView stateTextView = (TextView) root.findViewById(R.id.infowindow_state);
titleTextView.setText(title);
if (state!=null){
stateTextView.setText(getApplicationContext().getString(R.string.state)+" "+state);
stateTextView.setVisibility(View.VISIBLE);
}
hourTextView.setText(getApplicationContext().getString(R.string.time)+" "+hour);
stepsTextView.setText(getApplicationContext().getString(R.string.steps_so__far)+" "+steps);
return root;
}

public void setTitle(String title) {
this.title = title;
}

public void setHour(String hour) {
this.hour = hour;
}

public void setSteps(int steps) {
this.steps = steps;
}
}

标记是如何绘制的

private void drawMarkers(Calendar c){
String userId = this.user.getAccount().getId();
int year = c.get(Calendar.YEAR);
int month = c.get(Calendar.MONTH);
int dayOfMonth = c.get(Calendar.DAY_OF_MONTH);

final DatabaseReference timestampRef = FirebaseDatabase.getInstance().getReference()
.child(FirebaseConstant.TIMESTAMPS.toString());
timestampRef.child(userId).child(""+year).child(""+month).child(""+dayOfMonth)
.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
long childCounter=0;
for (DataSnapshot timestampSnapshot:dataSnapshot.getChildren()){
CustomInfoWindow infoWindow=new CustomInfoWindow();
Timestamp temp = timestampSnapshot.getValue(Timestamp.class);
if (temp!=null){
infoWindow.setTitle(getString(R.string.todays_timestamp));
infoWindow.setHour(getFormatedHourFromTimeMilli(temp.getTimeMilli()));
infoWindow.setSteps(temp.getStepSum());
if (temp.getState()!=null){
infoWindow.setState(temp.getState());
}
mMap.setInfoWindowAdapter(infoWindow);
drawTimestamp(temp);
infoWindow=null;
}
}
}

@Override
public void onCancelled(DatabaseError databaseError) {}
});
}

我已阅读 google's tutorial关于信息窗口,但无法解决我的问题。

最佳答案

希望这example将帮助您将它用作简单的 xml 布局。请记住,按钮将不起作用,如果您想让按钮处于可用状态,textview 将当场完成您的要求,请遵循 chose007 example .

关于android - 谷歌地图 : Different CustomInfowindow for each marker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45630398/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com