我想使用onTouch事件(处理地图上对象的旋转手势)。我无法在mainActivity中扩展Activity并使用片段。所以我想我应该使用MapView类。我怎么能在新版的谷歌地图android(V2)中做到这一点? 这没什么。只有手机上的空白屏幕。
MainActivity:
public class MainActivity extends Activity {
// MapView mapV;
// GoogleMap map;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mapV = ((MapView) findViewById(R.id.map));
map = mapV.getMap();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
activity_main.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<com.google.android.gms.maps.MapView
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
答案 0 :(得分:0)
在你的活动中,你必须实现所有生命周期方法(onPause等),然后将它转发到你的地图上,例如
@Override
public void onPause() {
map.onPause();
super.onPause();
}