是否可以在 OverLayItem 中发送除标记、标题和片段以外的值。因为我想在单击地图中的气球时处理许多按钮,所以我需要额外的值,如 ID、状态等。
问问题
192 次
2 回答
0
是的,你当然可以通过,OverlayItem 就像任何其他类一样,更改它的构造函数并为它传递你在类中需要的值。
于 2012-04-27T16:19:13.537 回答
0
请尝试创建新的覆盖项类
import com.google.android.maps.OverlayItem;
import com.google.android.maps.GeoPoint;
public class MyOverlayItem extends OverlayItem{
public String newvalue;
public MyOverlayItem (GeoPoint point,String arg1,String arg2,String newvalue)
{
super(point, arg1, arg2);
this.newvalue=newvalue;
}
}
于 2012-12-24T12:37:31.287 回答