#java #android #facebook-ads
#java #Android #facebook-объявления
Вопрос:
Итак, я добавил linearlayout для моего контейнера баннеров в моем nav_header.xml досье . Я вызвал это в своем MainActivity.java файл с использованием класса LinearLayout . Приложение вылетает при попытке его запуска и выдает следующее исключение :
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void android.widget.LinearLayout.addView(android.view.View)' on a null object reference
Указывая на эту строку в моем основном файле Java :
// ADS section
mAdView = new AdView(this, "IMG_16_9_APP_INSTALL#YOUR_PLACEMENT_ID", AdSize.BANNER_HEIGHT_90);
LinearLayout adContainer = (LinearLayout) findViewById(R.id.banner_container);
adContainer.addView(mAdView);
mAdView.loadAd();
Я попытался использовать изменитель макета в adContainer, но это не удалось.
Вот мой nav_header.xml файл :
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="192dp"
android:background="@color/c1"
android:padding="16dp"
android:theme="@style/ThemeOverlay.AppCompat.Dark"
android:orientation="vertical"
android:gravity="bottom">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@ id/banner_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
/>
</RelativeLayout>
</LinearLayout>
Вот мой основной файл activity :
<?xml version="1.0" encoding="utf-8"?>
<androidx.drawerlayout.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:id="@ id/drawerLayout"
android:layout_height="match_parent">
<include layout="@layout/container_layout"/>
<com.google.android.material.navigation.NavigationView
android:id="@ id/nav_view"
android:layout_height="match_parent"
android:layout_width="wrap_content"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header"
android:elevation="10dp"
app:menu="@menu/drawer_view"
tools:targetApi="lollipop" />
</androidx.drawerlayout.widget.DrawerLayout>
Ответ №1:
NullPointerException
происходит потому banner_container
, что не является частью activity_main
XML. Это часть nav_header
XML, к которой нелегко получить доступ в иерархии действий.
Для доступа к заголовку навигации:
View headerView = ((NavigationView)findViewById(R.id.nav_view)).getHeaderView(0);
LinearLayout container = (LinearLayout) headerView.findViewById(R.id.banner_container);
Надеюсь, это поможет!!
Редактировать: кастинг NavigationView
Комментарии:
1. редактирование ответа, попробуйте эту версию, может быть проблемой с кастингом
2. проверьте сейчас @agega