我试图将google admob sdk集成到以xml编写的Android应用程序中展示广告。是的我已经确保按顺序检查admob jar并在构建路径下导出!
我意识到还有其他未解决的问题,但没有一个答案解决了我的问题!我没有错误,我的project.properties设置为目标19,我的清单有这个:
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
我将发布我的整个主要布局页面 请帮帮我们!
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#000000"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageView1"
android:layout_centerVertical="true"
android:gravity="center"
android:text="@string/text_mainmenu"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#FFFFFF" />
<com.google.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adUnitId="[MYIDHERE]"
ads:adSize="BANNER"
ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID"
ads:loadAdOnCreate="true" />
</RelativeLayout>
答案 0 :(得分:11)
我有同样的问题。在Eclipse for Android-19(KitKat)中渲染布局时,图形布局存在一些问题。例如,您无法在“属性”窗口中更改项目。
在图形布局中切换到Android-18(绿色Android右上角)为我解决了这个问题。