我正在为osmdroid标记使用自定义InfoWindow布局(OSMDroid版本6.0.3)
标记添加如下:
for(int i=0;i<10;i++){
GeoPoint startPoint = new GeoPoint(Double.parseDouble(lat_lon[0]), Double.parseDouble(lat_lon[1]));
Marker startMarker = new Marker(map);
startMarker.setPosition(startPoint);
InfoWindow infoWindow = new MyInfoWindow(R.layout.listview_layout, map,device);
startMarker.setAnchor(Marker.ANCHOR_CENTER, Marker.ANCHOR_BOTTOM);
startMarker.setInfoWindow(infoWindow);
startMarker.setId(Integer.toString(i));
startMarker.setOnMarkerClickListener(new Marker.OnMarkerClickListener() {
@Override
public boolean onMarkerClick(Marker marker, MapView mapView) {
int d_id=Integer.parseInt(marker.getId());
start_details(items.get(d_id));
return true;
}
});
map.getOverlays().add(startMarker);
startMarker.showInfoWindow();
}
而我的自定义InfoWindow是我的活动的内部类,并且定义为:
private class MyInfoWindow extends InfoWindow{
public int index=0;
private datalogger de=null;
public MyInfoWindow(int layoutResId, MapView mapView,datalogger dev) {
super(layoutResId, mapView);
de=dev;
}
public void onClose() {
}
public void onOpen(Object arg0) {
LayoutInflater l=(LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
LinearLayout myRoot = new LinearLayout(getBaseContext());
View v=l.inflate(R.layout.listview_layout,myRoot,false);
TextView moreinfo=v.findViewById(R.id.details_txt);
TextView name=v.findViewById(R.id.name_txt);
name.setText(de.name);
}
运行我的应用程序后,将显示InfoWindows,但其中的元素具有来自android studio设计器的预定义值。我还尝试直接使用findViewById()
(而不是使用layoutinflater),但是返回空值。
答案 0 :(得分:0)
您的onOpen
方法会扩大新的布局,为该布局中的文本视图设置值,然后完成删除垃圾收集器的布局。布局未附加到视图层次结构上(因为myRoot
不是视图层次结构的一部分),因此它不会显示在任何地方。
InfoWindow实际上会为您膨胀并创建其视图层次结构。您可以通过受保护的字段mView
访问它。
所以您的onOpen方法可以这样写:
public void onOpen(Object arg0) {
TextView moreinfo=mView.findViewById(R.id.details_txt);
TextView name=mView.findViewById(R.id.name_txt);
name.setText(de.name);
}
有关更多信息,您可以查看the source code of the InfoWindow class。