2016-09-07 26 views
2

AndroidアプリでAdmobネイティブ広告を読み込もうとしています。しかし、彼らは表示されていません。私はこの問題を理解することができません。以下のコードを実行してください。Admobネイティブ広告がAndroidに表示されない

注:私は広告サイズでAdmobのネイティブ広告を使用しています "280x132"

XMLファイル

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:ads="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" 
    tools:context="com.radioaudio.motivationalaudios.MyYouTubePlayer"> 

    <com.google.android.youtube.player.YouTubePlayerView 
     android:id="@+id/youtube_view" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" /> 

    <TextView 
     android:id="@+id/videoTitle" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:padding="10dp" 
     android:text="Arise, Awake and stop not till the truth is known - Radio Story | IIT Kanpur Radio" 
     android:textColor="#000" 
     android:textSize="20dp" /> 

    <com.google.android.gms.ads.NativeExpressAdView 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     ads:adUnitId="ca-app-pub-5059726881726792/7013814664" 
     ads:adSize="280x132"> 
    </com.google.android.gms.ads.NativeExpressAdView> 

</LinearLayout> 

Javaファイル

protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.my_youtube_player); 
     //Admob Ad 
     NativeExpressAdView adView = (NativeExpressAdView) findViewById(R.id.adView); 

     AdRequest request = new AdRequest.Builder() 
       .addTestDevice("A5E3E2068BD88202CBC281AD76984BEE") 
       .build(); 
     adView.loadAd(request); 
    } 
+0

あなたのログも共有してください。フィルタ広告 –

+0

こんにちは、あなたはまだ解決策を見つけましたか? –

答えて

1

ここでより多くのログを追加します。私たちは理解することができます。しばらくしてからもう一度アプリを閉じて開いてみてください。それが解決しない場合はログが私たちを助けることができるかもしれません。

さらに、私たちのレイアウトにYouTubeプレーヤーのビューがある場合、広告を表示することはできません。それはあなたが持っているものです。私のアプリをプレイストアに公開しているときに直面していた問題の1つです。

それはちょっと双方向の収益化です:プレイヤーのビデオで 1.同時に広告 2.バナーの表示/ネイティブ広告が表示されます

グーグル側から許可されていないものです。

問題が発生する可能性もありますが、広告は表示されません。 幸運

2

ネイティブ広告が表示されるまでに時間がかかります。親切にも2〜3時間待ってください。自動的にポップアップ表示されます。

0

あなたはyoutubeと一緒に広告を表示することはできません。同じページにgoogleに属するサービスを表示することはできません。

関連する問題