如何从静态片段中显示Admob插页式广告?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何从静态片段中显示Admob插页式广告?相关的知识,希望对你有一定的参考价值。
这是我的错误;
Non-static method 'showInterstitial()' cannot be referenced from a static context
注意:即使我将interstitialAd设为静态广告,即使广告已加载,它也不会从片段中显示。
我从onCreate
可以看到以下公共方法,我从那里打电话给createInterstitial()
。
public void crateInterstitial(){
interstitialAd = new InterstitialAd(getApplicationContext());
interstitialAd.setAdUnitId(MyID);
interstitialAd.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
// not call show interstitial ad from here
}
@Override
public void onAdClosed() {
loadInterstitial();
}
});
loadInterstitial();
}
public void loadInterstitial(){
AdRequest interstitialRequest = new AdRequest.Builder()
.addTestDevice(MyTestDevice)
.build();
interstitialAd.loadAd(interstitialRequest);
Log.e("Loading another","Ad");
}
public void showInterstitial(){
if (interstitialAd.isLoaded()){
interstitialAd.show();
Log.e("Showing","Ad");
}
else{
loadInterstitial();
Log.e("Loading","Ad");
}
}
showInterstitial()
来自onCreate井。但是,我想在用户转到PlaceholderFragment viewPager中的一个特定片段时显示广告。但是,我做不到。请告诉我如何解决。
public static class PlaceholderFragment extends Fragment {
/**
* The fragment argument representing the section number for this
* fragment.
*/
private static final String ARG_SECTION_NUMBER = "section_number";
public PlaceholderFragment() {
}
/**
* Returns a new instance of this fragment for the given section
* number.
*/
public static PlaceholderFragment newInstance(int sectionNumber) {
PlaceholderFragment fragment = new PlaceholderFragment();
Bundle args = new Bundle();
args.putInt(ARG_SECTION_NUMBER, sectionNumber);
fragment.setArguments(args);
return fragment;
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
showInterstitial(); //This is where the error is.
View rootView = inflater.inflate(R.layout.fragment_results, container, false);
return rootView;
}
请注意我无法使PlaceHolderFragment静态,因为我收到错误;
“这个片段内部类应该是静态的(com.xx.PlaceholderFragment)来自Fragment文档:每个片段必须有一个空构造函数,因此可以在恢复其活动状态时进行实例化。强烈建议子类没有其他构造函数带参数,因为在重新实例化片段时不会调用这些构造函数;相反,调用者可以使用setArguments(Bundle)提供参数,然后由Fragment使用getArguments()检索。
答案
我通过创建一个SECOND静态插页式广告对象并从片段中调用以下代码来暂时解决了这个问题。
public static InterstitialAd sinterstitialAd;
sinterstitialAd = new InterstitialAd(getContext());
sinterstitialAd.setAdUnitId(MY_AD_UNIT_ID);
final AdRequest sinterstitialRequest = new AdRequest.Builder()
.addTestDevice(MY_TEST_DEVICE)
.build();
sinterstitialAd.loadAd(sinterstitialRequest);
Log.e("sinterstitial Ad", "Loading");
sinterstitialAd.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
if (sinterstitialAd.isLoaded()) {
sinterstitialAd.show();
Log.e("Showing", "New Ad");
}
}
@Override
public void onAdClosed() {
}
});
以上是关于如何从静态片段中显示Admob插页式广告?的主要内容,如果未能解决你的问题,请参考以下文章
RecycleViewerAdapter 未完美显示 admob 插页式广告
如何使用 AdMob 在活动中加载插页式广告并在下一个活动中显示?