在可能的应用程序中,我正在使用 Google 地图版本 2。在那是自定义地图信息窗口。必须只使用两个文本视图。我如何在该信息窗口中添加两个以上的文本视图或评级栏。
我的编码
class MyInfoWindowAdapter implements InfoWindowAdapter{
private final View myContentsView;
MyInfoWindowAdapter(){
myContentsView = getLayoutInflater().inflate(R.layout.info_window, null);
}
@Override
public View getInfoContents(Marker marker) {
TextView tvTitle = ((TextView)myContentsView.findViewById(R.id.restaurant_name));
tvTitle.setText(marker.getTitle());
TextView tvSnippet = ((TextView)myContentsView.findViewById(R.id.address));
tvSnippet.setText(marker.getSnippet());
return myContentsView;
}
@Override
public View getInfoWindow(Marker marker) {
// TODO Auto-generated method stub
return null;
}
}
我不知道该怎么做。有人知道请帮我解决这个问题。