Не могу нажать на рекламу AdMob - PullRequest
0 голосов
/ 09 августа 2011

Хорошо, мне было интересно, почему я больше не получаю деньги за рекламу, а потом я понял, что не могу нажимать на свои объявления, когда я ... нажимаю на них. Вот мой main.xml.

main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/pattern_carbon_fiber_dark">

<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads" 
android:id="@+id/adView"
android:layout_width="fill_parent" 
ads:adSize="BANNER"
ads:adUnitId="***************"
ads:loadAdOnCreate="true"
android:visibility="visible"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom" 
android:layout_height="wrap_content" 
android:layout_alignParentTop="false">
</com.google.ads.AdView>

<ScrollView 
  android:id="@+id/ScrollView01"
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent">

  <LinearLayout 
    android:orientation="vertical" 
    android:layout_height="fill_parent" 
    android:layout_width="fill_parent" 
    android:id="@+id/LinearLayout02" 
    android:padding="4dp">

  <TextView 
    android:layout_width="wrap_content" 
    android:text="Silent Mode" 
    android:id="@+id/silent_textview" 
    android:layout_height="wrap_content">
  </TextView>

  <ToggleButton 
    android:textOff="OFF" 
    android:layout_width="wrap_content" 
    android:textOn="ON" 
    android:id="@+id/silentbutton" 
    android:layout_height="wrap_content" 
    android:text="Silent Mode">
  </ToggleButton>

  <TextView 
    android:layout_width="wrap_content" 
    android:text="@string/vibrate" 
    android:id="@+id/vibrate_textview" 
    android:layout_height="wrap_content">
  </TextView>

  <ToggleButton 
    android:layout_width="wrap_content" 
    android:id="@+id/vibratebutton" 
    android:layout_height="wrap_content" 
    android:text="ToggleButton">
  </ToggleButton>

  <TextView 
    android:layout_width="wrap_content" 
    android:text="Wifi " 
    android:id="@+id/wifi_textview" 
    android:layout_height="wrap_content">
  </TextView>

  <ToggleButton 
    android:layout_width="wrap_content" 
    android:id="@+id/wifibutton" 
    android:layout_height="wrap_content" 
    android:text="ToggleButton">
  </ToggleButton>

  <TextView 
    android:layout_width="wrap_content" 
    android:text="@string/gps" 
    android:id="@+id/gps_textview" 
    android:layout_height="wrap_content">
  </TextView>

  <Button 
    android:id="@+id/gps" 
    android:text="@string/gpsbutton" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content">
  </Button>

  <TextView 
    android:layout_width="wrap_content" 
    android:text="@string/bluetooth" 
    android:id="@+id/bluetooth_textview" 
    android:layout_height="wrap_content">
  </TextView>

  <ToggleButton 
    android:layout_width="wrap_content" 
    android:id="@+id/bluetooth" 
    android:layout_height="wrap_content" 
    android:text="ToggleButton">
  </ToggleButton>

  <TextView 
    android:layout_width="wrap_content" 
    android:text="@string/brightness" 
    android:id="@+id/screenbrightness_textview" 
    android:layout_height="wrap_content">
  </TextView>

  <SeekBar 
    android:layout_height="wrap_content" 
    android:max="255" 
    android:layout_width="fill_parent" 
    android:id="@+id/SbBar">
  </SeekBar>

</LinearLayout>
</ScrollView>
</RelativeLayout> 

1 Ответ

1 голос
/ 09 августа 2011

Если вы поменяете объявление для кнопки, сможете ли вы нажать на нее? Это было бы хорошим способом определить, связана ли проблема с форматированием XML или с самим рекламным кодом. Я не вижу ничего такого, что торчало бы в XML, что могло бы сделать его недоступным для клика.

Я бы предложил либо:

  1. Попробуйте кнопку подсказки

  2. Проверьте рекламный код AdMob еще раз, чтобы убедиться, что все правильно.

  3. Попробуйте перекомпилировать приложение, чтобы проверить, не было ли каких-то ошибок в этом процессе.

-Также вы недавно вносили какие-либо изменения в XML в тот день, когда заметили, что деньги перестали поступать?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...