我有问题我想将admob添加到Preference Activity,但应用程序没有显示它。
以下是我的AdMob活动:
public class AdMobActivity extends Preference {
public AdMobActivity(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);}
public AdMobActivity(Context context, AttributeSet attrs) {super(context, attrs);}
public AdMobActivity(Context context) {super(context);}
@Override
protected View onCreateView(ViewGroup parent) {
// this will create the linear layout defined in
View view = super.onCreateView(parent);
// the context is a PreferenceActivity
Activity activity = (Activity)getContext();
// Create the adView
AdView adView = new AdView(activity, AdSize.BANNER, "XXXXXXXXXXX");
((LinearLayout)view).addView(adView);
// Initiate a generic request to load it with an ad
AdRequest request = new AdRequest();
adView.loadAd(request);
return view;
}
}
以下是AdMob(banner.xml)的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
以下是我的偏好活动的xml:
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:title="Ads">
<com.blabla.asafgasf.AdMobActivity android:layout="@layout/banner"/>
</PreferenceCategory>
<PreferenceCategory
.....
</PreferenceCategory>
</PreferenceScreen>
我在project.properties中设置了target=android-13
,在我的Manifest中我设置了:{/ p>
<activity android:name=".AdMobActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
如果我从我的应用程序中的configChanges中删除|screenLayout|uiMode|screenSize|smallestScreenSize
,则会显示红色框,并写有:您必须在AndroidManifest.xml中使用configChanges声明AdActivity。
我安装了最新版本的AdMob库(4.3.1)和最新版本的SDK(API 14)以及最新的ADT插件。 问题出在哪里?
答案 0 :(得分:0)
您可能没有广告来填充Admob,您在LogCat中收到了什么?
答案 1 :(得分:0)
我建议您在hierarchyviewer
工具中查看自己的观点。您应该能够看到您的视图是否已添加到LinearLayout中。有时会添加视图,但布局参数不正确,因此视图不可见。
您可以在\ tools中找到查看器。只需在模拟器中启动应用程序切换到命令提示符/终端并执行可执行文件。