SupportMapFragment在某些Android设备上不起作用

时间:2013-10-16 12:54:49

标签: android google-maps-android-api-2 supportmapfragment

我有一个Android应用程序,在一个活动中,我使用SupportMapFragment插入谷歌地图。问题是在我的设备(与Android 4.3的galaxy nexus)和与Android 2.3的galaxy s中它运行良好,而在其他设备(它们与哪个Android版本无关)它显示带缩放控件的空白地图。 Api键是正确的(因为在某些设备上它可以工作)。这是我使用的代码:

public class Mappa extends FragmentActivity{

GoogleMap map;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    setContentView(R.layout.mappa);

    if (map == null) {
        map = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
    }
}

}

这是xml文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/home_screen"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1">
<LinearLayout 
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.9">
    <fragment 
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment"/>
</LinearLayout>
<LinearLayout 
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.1"
    android:orientation="vertical">
    <include layout="@layout/menu_bottom"/>
</LinearLayout>

在androidmanifest文件中,我设置了所有权限和api密钥,如下所示:

<permission
    android:name="com.mattialori.battagliadianghiari.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />
<uses-permission android:name="com.mattialori.battagliadianghiari.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
        android:value="xxx" />

权限在manifest标记下,api密钥在application标记下。我是否必须在活动标签中写一些内容?这是我写的:

    <activity
        android:name="com.mattialori.battagliadianghiari.Mappa"
        android:theme="@android:style/Theme.Black.NoTitleBar"
        android:screenOrientation="portrait">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.ALTERNATIVE" />
        </intent-filter>
    </activity>

0 个答案:

没有答案