Styles manquants. Est le thème choisi pour cette mise en page? Utiliser le Thème de zone de liste déroulante au-dessus de la mise en page pour sélectionner une mise en page différente, ou de corriger le style du thème de références. Pas réussi à trouver le style mapViewStyle
dans le thème actuel.
J'ai essayé toutes les solutions disponibles pour résoudre ce problème, mais rien ne semble fonctionner. J'ai bibliothèque incluse dans le fichier manifeste. J'ai même créé le style est styles.xml j'ai choisi Api Google cible de génération.
Quelqu'un peut-il me donner une solution. Merci d'avance pour votre temps précieux.
voici mon xml fichier:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/AppTheme"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.google.android.maps.MapView
android:id="@+id/themap"
style="@style/mapViewStyle"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="here i have my key"
android:clickable="true"
android:enabled="true" />
</RelativeLayout>
Voici mon manifeste extrait:
<uses-library android:name="com.google.android.maps" />
<activity
android:name=".MainActivity"
android:label="@string/title_activity_main" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".Second" />
<activity android:name=".Third" android:theme="@android:style/Theme.Black"/>
</application>
voici mon style.xml fichier
<resources>
<style name="mapViewStyle" parent="@android:style/Theme.Black">
</style>
</resources>