gpt4 book ai didi

java - 为什么 admob 在测试时没有出现?我的代码有什么问题?

转载 作者:太空狗 更新时间:2023-10-29 13:11:59 24 4
gpt4 key购买 nike

帮帮我,我知道有很多这样的问题,但没有人适合我。我有三个带有三个 fragment 的选项卡,每个 fragment 都包含一个 ListView 我想将 AdMob 放在每个 ListView 的底部,但添加没有出现在模拟器中。

这是我的代码。

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"
android:layout_height="match_parent"

android:fitsSystemWindows="true"
tools:context="androidthirst.company.abhi.totalenglish.MainActivity">

<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">

<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.AppBarOverlay" />

<android.support.design.widget.TabLayout
android:id="@+id/tab_layout"
style="@style/MyCustomTabLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMode="fixed" />
</android.support.design.widget.AppBarLayout>

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<include layout="@layout/content_tab_layout_demo" />

<RelativeLayout
android:layout_width="match_parent"

android:layout_height="wrap_content">
<com.google.android.gms.ads.AdView
android:id="@+id/adView1"

android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/band">
</com.google.android.gms.ads.AdView>
</RelativeLayout>

</android.support.design.widget.CoordinatorLayout>

代码如下ActivityMain.java

public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

RateItDialogFragment.show(this,getFragmentManager());

setContentView(R.layout.activity_main);
MobileAds.initialize(getApplicationContext(), "ca-app-pub-8835951437809468~5344380934");

AdView mAdView = (AdView) findViewById(R.id.adView1);
AdRequest adRequest = new AdRequest.Builder().addTestDevice(AdRequest.DEVICE_ID_EMULATOR).addTestDevice("3FB54EBF85D756B8").build();
mAdView.loadAd(adRequest);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
toolbar.getMenu();
setSupportActionBar(toolbar);
TabLayout tabLayout =(TabLayout)findViewById(R.id.tab_layout);
tabLayout.addTab(tabLayout.newTab().setText("GRAMMAR"));
tabLayout.addTab(tabLayout.newTab().setText("TENSE"));
tabLayout.addTab(tabLayout.newTab().setText("SPOKEN ENGLISH"));

请帮我解决这个问题

这就是我的应用程序的图像 Click here to see image

最佳答案

Admob 需要在设备上安装 Google Play 服务。确保在模拟器上安装了谷歌播放服务。

关于java - 为什么 admob 在测试时没有出现?我的代码有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39503375/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com