Я только что обновил свой андроид с помощью sdk-r17 и затмения с помощью ADT-17. Теперь все мои приложения, использующие admob, вызывали принудительное закрытие после сборки и запуска на реальном устройстве или эмуляторе (до обновления работало хорошо)
Вот мой xml-макет:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.ads.AdView
android:id="@+id/admob"
android:layout_alignParentBottom="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="xxxxxx"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
<ListView
android:id="@+id/lv_agent"
android:layout_above="@id/admob"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#00000000"
android:focusable="true"
android:layoutAnimation="@anim/l_slide_right"
android:listSelector="@drawable/bg_list_selector"
android:divider="#3f3f3f"
Сообщение об ошибке logcat:
AndroidRuntime(29533): Caused by: java.lang.RuntimeException: Unable to start activity ComponentInfo{net.londatiga.xxx/net.londatiga.xxx.xxx}: android.view.InflateException: Binary XML file line #19: Error inflating class com.google.ads.AdView
Какие-нибудь решения?