Hinzufügen von Google-Anzeigen zu Android App
Ich möchte meiner App Google-Anzeigen hinzufügen (dies ist mein erstes Mal). Ich habe die JAR-Datei auch hinzugefügt.
Hier ist die XML.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@color/headerbgcolor"
android:weightSum="1" >
<Button
android:id="@+id/back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:text="@string/back"
android:onClick="finishActivity"/>
<TextView
android:id="@+id/headertitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="0.6"
android:gravity="center"
android:text="@string/header_title" />
<Button
android:id="@+id/home"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.2"
android:text="@string/home" />
</LinearLayout>
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="320dp"
android:scrollbarAlwaysDrawVerticalTrack="true" >
</ListView>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="a14f26e5d930307"
ads:loadAdOnCreate="true"
ads:testDevices="AVD_for_4in_WVGA_Nexus_S,5554" />
</RelativeLayout>
</LinearLayout>
aber ich kann adview in meiner Klasse nicht definieren, wenn ich versuche, es in der Klasse zu definieren.
Hier ist meine Klasse, in der ich versuche zu definieren.
public class Cities extends Activity {
Button btnback = null;
Button btnhome = null;
TextView headertitle = null;
ListView lstcities;
ImageView imgfooter;
AdView adView;
public String BtnSelected;
Ich erhalte die Fehlermeldung, dass Adview nicht für die Eingabe aufgelöst werden kann, wenn ich zu definieren versuche
AdView adview;
Was ist das Problem?