使用sherlock查找mapViewStyle失败



在我的应用程序mapview工作良好,但突然有一天,当我刚刚写的xml文件的错误是不去甚至改变目标sdk,清理重建,并删除r.c java文件。还将styles.xml文件更改为Theme。光,但仍然显示错误。这是我的xml mapView和manifest文件。

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:orientation="vertical"
    tools:context=".WAmIActivity" >
    <com.google.android.maps.MapView
        android:id="@+id/mapView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="0dtHyV-rxfPOpVnbG700kdJIIx3DIxRid59K_mg"
        android:clickable="true"
        android:enabled="true"
        android:visibility="visible" />
</RelativeLayout>
Manifest file :-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.mygooglemapactivity"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />
    <uses-permission android:name="android.permission.INTERNET"/>
    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/SherlockTheme" >

        <uses-library
            android:name="com.google.android.maps"/>

       <activity
            android:name=".MainActivity"
            android:label="MainActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".MainScreenActivity"
            android:label="MainScreenActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
    </application>
</manifest>

键已正式丢失,没有更新的谷歌地图v1。使用Google地图v2

请参考网站

https://developers.google.com/maps/documentation/android/intro

相关内容

  • 没有找到相关文章

最新更新