我有一个带指针的mapview,当点击一个指针时,我会显示一个alertdialog。 在这个对话框中,我有一些文本和两个按钮,正面和负面。 单击肯定时,我想根据单击的指针的id打开一个新活动。
我是Android和java的新手,我无法将ID传递给点击事件。
我的代码到目前为止..
List<myItemType> myItems= //code to get list of items
final ArrayList<OverlayItem> items = new ArrayList<OverlayItem>(
);
for (myItemType item : myItems) {
Double lat = Double.parseDouble(item .Lat);
Double lng = Double.parseDouble(item .Long);
items.add(new OverlayItem(item .ID, item .Name, item .Description
.substring(0, 20) + "...", new GeoPoint(lat, lng)));
}
ItemizedOverlay<OverlayItem> myOverLay =
new ItemizedOverlay<OverlayItem>(
this, items, this.getResources().getDrawable(R.drawable.standard_pointer), new Point(5, 5),
HotspotPlace.BOTTOM_CENTER, new ItemizedOverlay.OnItemGestureListener<OverlayItem>()
{
@Override
public boolean onItemSingleTapUp(final int index,final OverlayItem item) {
AlertDialog.Builder dialog = new AlertDialog.Builder(MapActivity.this);
dialog.setTitle(item.mTitle);
dialog.setMessage(item.mDescription);
dialog.setPositiveButton(R.string.View,new DialogInterface.OnClickListener()
{
//********************CLICK EVENT HERE
@Override
public void onClick(DialogInterface dialog,int which) {
Intent i = new Intent(MapActivity.this,POI.class);
i.putExtra("Id", item.mKey); //<------ item.mKey is null!
startActivity(i);
}
});
dialog.setNegativeButton(R.string.Cancel, null);
dialog.create();
dialog.show();
return true;
}
Id存储在“item.mKey”中,我知道我无法直接访问它,但我无法弄清楚如何传递它。 有人能指出我正确的方向吗?
Bex
答案 0 :(得分:0)
假设你的mKey是一个字符串,试试这个。在final String key = item.mkey;
之前写下dialog.setPositiveButton
,然后在onClick
方法i.putExtra("Id", key);
答案 1 :(得分:0)
只是为我添加的答案添加答案..我添加了一个全局变量来使用而不是传入ID。