J'essaie d'ajouter admob à mon application Android dans Android Studio. J'y suis presque mais j'obtiens l'erreur de:
Namespace 'ads' not bound
Voici aussi mon xml avec l'annonce:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:layout_width="match_parent"
Android:layout_height="match_parent" >
<LinearLayout
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:orientation="vertical" >
<com.google.ads.AdView Android:id="@+id/adView"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
ads:adUnitId="MY_AD_UNIT_ID"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:loadAdOnCreate="true"/>
<TextView
Android:id="@+id/beerTitle"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:ems="10"
Android:textSize="20sp"
Android:textStyle = "bold"
Android:padding="5dip"
>
</TextView>
<ImageView Android:id="@+id/image"
Android:layout_height="fill_parent"
Android:layout_width="fill_parent"
Android:layout_margin="10dip"/>
<TableLayout
Android:id="@+id/tableLayout1"
Android:layout_width="match_parent"
Android:layout_height="match_parent"
Android:layout_gravity="center_horizontal"
Android:shrinkColumns="*"
Android:stretchColumns="*">
<TableRow
Android:id="@+id/tableStatTitles"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:padding="5dip" >
<TextView
Android:id="@+id/abvTitle"
Android:text="ABV"
Android:gravity="center"
Android:textStyle = "bold"
Android:textSize="20sp"
Android:layout_weight="1"
></TextView>
<TextView
Android:id="@+id/IBUTitle"
Android:text="IBU"
Android:gravity="center"
Android:textStyle = "bold"
Android:textSize="20sp"
Android:layout_weight="1"
></TextView>
<TextView
Android:id="@+id/glassTitle"
Android:text="Glass"
Android:gravity="center"
Android:textStyle = "bold"
Android:textSize="20sp"
Android:layout_weight="1"
Android:layout_width="wrap_content"
></TextView>
</TableRow>
<TableRow
Android:id="@+id/tableStat"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:padding="5dip" >
<TextView
Android:id="@+id/abv"
Android:text=""
Android:gravity="center"
Android:textSize="15sp"
Android:layout_width="wrap_content"
></TextView>
<TextView
Android:id="@+id/IBU"
Android:text=""
Android:gravity="center"
Android:textSize="15sp"
Android:layout_width="wrap_content"
></TextView>
<TextView
Android:id="@+id/glass"
Android:text=""
Android:gravity="center"
Android:textSize="15sp"
Android:layout_width="wrap_content"
></TextView>
</TableRow>
</TableLayout>
<View
Android:layout_width="1dp"
Android:layout_height="30dp">
</View>
<LinearLayout
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:orientation="horizontal" >
<TextView
Android:id="@+id/textView1"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text="Average Rating: "
Android:textStyle = "bold"
Android:textSize="20sp"
/>
<TextView
Android:id="@+id/beerRating"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:text=""
Android:textSize="20sp"
/>
</LinearLayout>
<View
Android:layout_width="1dp"
Android:layout_height="30dp">
</View>
<Button
Android:id="@+id/buttonBrewery"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:padding="5dip"
Android:text=""
Android:onClick="viewBrewery"
/>
<Button
Android:id="@+id/buttonStyle"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:padding="5dip"
Android:text=""
Android:onClick="viewStyle"
/>
<View
Android:layout_width="1dp"
Android:layout_height="30dp">
</View>
<TextView
Android:id="@+id/yourPortfolio"
Android:textStyle = "bold"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:ems="10"
Android:textSize="20sp"
Android:text="Your Portfolio:"
Android:padding="5dip"
></TextView>
<LinearLayout
Android:id="@+id/addBeerLayout"
Android:layout_width="match_parent"
Android:layout_height="wrap_content"
Android:orientation="vertical" >
</LinearLayout>
<TextView
Android:id="@+id/beerDescriptionTitle"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:ems="10"
Android:padding="5dip"
Android:text="Description:"
Android:textSize="20sp"
Android:textStyle="bold" >
</TextView>
<TextView
Android:id="@+id/beerDescription"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:ems="10"
Android:textSize="15sp"
Android:padding="5dip"
></TextView>
<Button
Android:id="@+id/buttonTasteTag"
Android:layout_width="fill_parent"
Android:layout_height="wrap_content"
Android:padding="5dip"
Android:text="Taste Profile"
Android:onClick="viewTasteTags"
/>
</LinearLayout>
</ScrollView>
Vous devez ajouter cet espace de noms:
xmlns:ads="http://schemas.Android.com/apk/lib/com.google.ads"
Il suffit de le coller sous l’espace de noms Android:
<ScrollView xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:ads="http://schemas.Android.com/apk/lib/com.google.ads"
Android:layout_width="match_parent"
Android:layout_height="match_parent" >
De plus, gardez à l'esprit que depuis la mise à jour 17 de SDK Tools, vous pouvez utiliser http://schemas.Android.com/apk/res-auto
au lieu d'un espace de nom complet + nom du paquet ( plus d'infos ).
Donc, cela devrait également fonctionner:
<ScrollView xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:auto="http://schemas.Android.com/apk/res-auto"
Android:layout_width="match_parent"
Android:layout_height="match_parent" >
J'ai eu le même problème, dans mon cas, la solution a été de mettre une balise fermeture , par exemple:
<com.google.Android.gms.ads.AdView
xmlns:ads="http://schemas.Android.com/apk/res-auto"
Android:id="@+id/adView"
Android:layout_width="wrap_content"
Android:layout_height="wrap_content"
Android:layout_centerHorizontal="true"
Android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111">
</com.google.Android.gms.ads.AdView>
un espace de noms doit être ajouté à votre élément racine xml: D
xmlns:ads="http://schemas.Android.com/apk/lib/com.google.ads"
ajoutez cette ligne à la balise ou à l'élément situé dans votre fichier XML et vous serez prêt à partir.