我制作了一个包含“MyLocation、LocationCar 和方向”的菜单,我希望单击方向菜单时会显示她MyLocation
到的方向LocationCar
。
怎么做,有教程可以帮到我吗?
这是我的菜单代码:
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case MENU_MyLocation:
map.setMyLocationEnabled(true);
return(true);
case MENU_LocationCar:
startActivity(new Intent(this, Gps.class));
return(true);
case MENU_Direction:
// here to show the direction of MyLocation to LocationCar??
return(true);
}
return(super.onOptionsItemSelected(item));
}