Google 앱 스토어 2 주 후에 실제 기기에 Banner가 표시되지 않는다는 것을 깨달았습니다. 안드로이드 스튜디오 가상 장치로 테스트 할 때 괜찮 았어. Admob 배너가 실제 기기에 표시되지 않음
이 내 MainActivity에 배너와 관련된 코드 :AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest request = new AdRequest.Builder().build();
mAdView.loadAd(request);
및 레이아웃 :
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray_background">
<com.flaviofaria.kenburnsview.KenBurnsView
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<LinearLayout
android:layout_marginTop="?attr/actionBarSize"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="misc.songbox.Search"
android:orientation="vertical">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
ads:adUnitId="@string/bannerAd">
</com.google.android.gms.ads.AdView>
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/listView"
android:dividerHeight="0dp"
/>
</LinearLayout>
</RelativeLayout>
'AdView'가 최상위 레이어에 있어야합니다. – Aryan
무엇을 의미합니까? –