我上了这门课
public class GoogleMapActivity extends MapActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_map);
}
}
我在编辑器中收到错误 - “MapActivity 无法解析为类型”。
本教程说我必须扩展这个特定的类。
我提到我在清单中指定我需要像这样的谷歌地图库
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps"/>