Android Admob is not Showing Up
Posted
by
Brandon
on Stack Overflow
See other posts from Stack Overflow
or by Brandon
Published on 2010-12-31T04:53:12Z
Indexed on
2010/12/31
4:53 UTC
Read the original article
Hit count: 265
Admob is not showing up on my emulator or on the device it self. I tried with testing mode on and off. Relevant Manifest data: permissions:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_INTERNAL_STORAGE" />
meta data:
<meta-data android:value="true" android:name="AD_REQUEST" />
The x's are actually my ID.
My whole main.xml:
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="visible"
android:layout_alignParentTop="true"/>
Hopefully I can get this solved soon...
© Stack Overflow or respective owner