我有一个问题,我可以使用 MapView 并正确地看到地图:
<com.google.android.gms.maps.MapView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
但是当我使用 MapFragment 时,应用程序崩溃......错误膨胀类片段:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"/>
main.java 它只是:
public class situar_mapav3 extends android.support.v4.app.FragmentActivity{
public situar_mapav3() {
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
}
任何想法 ?谢谢。