【发布时间】:2013-12-14 04:57:43
【问题描述】:
我尝试了一个教程来在我的应用程序中实现 Google 地图。 http://www.androidhive.info/2013/08/android-working-with-google-maps-v2/
我会尝试这个例子,但它在这个级别崩溃了:setContentView(R.layout.activity_main);
我按照教程正确,一般没有API Key问题。
编辑:这是我解决的所有代码 - 错误显示在评论中
MANIFEST.XML:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.essaimap"
android:versionCode="1"
android:versionName="1.0" >
<permission
android:name="com.example.essaimap.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.essaimap.permission.MAPS_RECEIVE" />
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="16" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Required to show current location -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<!-- Required OpenGL ES 2.0. for Maps V2 -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- IMPORTANT ! DO NOT FORGET THIS META-DATA !!! -->
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<!-- IMPORTANT ! DO NOT PUT THIS META IN ACTIVITY ELEMENT-->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyDWCZGT4OIUAZEOUIYAZEOIYAZOEIYAZOEIY6WRvbh6BnHSAipgg" />
<activity
android:name="com.example.essaimap.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- I put my meta here, that is why my app was crashing
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyDWCZGT4n2HLZ5bUCM6WRvbh6BnHSAipgg" /> -->
</activity>
</application>
</manifest>
ACTIVITY_MAIN.XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
MAINACTIVITY.JAVA:
public class MainActivity extends FragmentActivity // Not ACTIVITY
{
// Google Map
private GoogleMap googleMap;
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
try
{
// Loading map
initilizeMap();
}
catch (Exception e)
{
e.printStackTrace();
}
}
/**
* function to load map. If map is not created it will create it for you
* */
private void initilizeMap()
{
if (googleMap == null)
{
googleMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
// check if map is created successfully or not
if (googleMap == null)
{
Toast.makeText(getApplicationContext(),"Sorry! unable to create maps",Toast.LENGTH_SHORT).show();
}
}
}
protected void onResume()
{
super.onResume();
initilizeMap();
}
}
LOGCAT
感谢@Piyush Gupta、@fasteque、@WarrenFaith、@Sankar V 和@ViragBrahme,我的问题得到了解决。
豆腐
【问题讨论】:
-
请张贴logcat。谢谢。
-
向我们展示 logcat 错误
-
您的清单文件中缺少库版本。阅读logcat,它写在那里。只需将建议的内容复制到清单中即可。
-
您的项目中是否包含了 Google Play Services 库?
-
阅读 Logcat,IllegalStateException 提到您缺少元标记!
标签: java android xml google-maps android-layout