Admob NativeExpressAdView не работает Ошибка: ошибка надувания класса com.google.android.ads.nativetemplates.TemplateView - PullRequest
0 голосов
/ 08 ноября 2019

Я пытаюсь добавить объявления Admob Native в свое приложение. Но когда приложение запускается, никакие объявления не отображаются. Отображение ошибки:

 Caused by: android.view.InflateException: Binary XML file line #13: Binary XML file line #13: Error inflating class com.google.android.ads.nativetemplates.TemplateView
 Caused by: android.view.InflateException: Binary XML file line #13: Error inflating class com.google.android.ads.nativetemplates.TemplateView
 Caused by: java.lang.reflect.InvocationTargetException

Я не понял, что я сделал не так.

Вот мой код xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat 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:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />

    <com.google.android.gms.ads.NativeExpressAdView
        android:id="@+id/adView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        ads:adUnitId="ca-app-pub-3940256099942544/2247696110"
        ads:adSize="300x220">
    </com.google.android.gms.ads.NativeExpressAdView>

</androidx.appcompat.widget.LinearLayoutCompat>

Вот код активности

public class MainActivity extends AppCompatActivity {

    private NativeExpressAdView nativeExpressAdView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        MobileAds.initialize(this, new OnInitializationCompleteListener() {
            @Override
            public void onInitializationComplete(InitializationStatus initializationStatus) {
            }
        });

        nativeExpressAdView=findViewById(R.id.adView);
        nativeExpressAdView.loadAd(new AdRequest.Builder().build());
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...