有谁知道如何通过单击音量键在 android 上制作谷歌地图 V2 来放大/缩小?
我使用此代码,但它不起作用:
@Override
public boolean dispatchKeyEvent(KeyEvent event)
{
if (mUseVolumeKeys)
{
int action = event.getAction();
int keyCode = event.getKeyCode();
switch (keyCode)
{
case KeyEvent.KEYCODE_VOLUME_UP:
if (action == KeyEvent.ACTION_UP)
{
if (mMap != null)
{
mMap.zoomIn();
}
}
return true;
case KeyEvent.KEYCODE_VOLUME_DOWN:
if (action == KeyEvent.ACTION_DOWN)
{
if (mMap != null)
{
mMap.zoomOut();
}
}
return true;
}
}
我在 Mmap.zoomIn / out 上有一个错误,上面写着 The method zoomIn() is undefined for the type GoogleMap
谢谢!