Изменение макета ViewStub несколько раз - PullRequest
0 голосов
/ 30 сентября 2018

У меня есть ConstrainedLayout с BottomNavigation.Я пытаюсь изменить вид при нажатии кнопок навигации.Для этого я использовал ViewStub, а затем в зависимости от того, какая кнопка была нажата, я раздуваю другой макет.

Проблема в том, что этот метод работает с первого раза.Но когда я нажимаю другую кнопку и пытаюсь установить другой макет, я получаю:

Attempt to invoke virtual method 'void android.view.ViewStub.setLayoutResource(int)' on a null object reference

Я считаю, что это потому, что ViewStub больше не существует.

Так как я могу изменить этот макет несколько раз?Нужно ли отслеживать текущий макет и заменять его новым макетом?

Это мой XML:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    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"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ViewTrackerActivity"
    android:animateLayoutChanges="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:orientation="vertical"
        android:elevation="5dp"
        android:id="@+id/trackerFullLayout"
        android:animateLayoutChanges="true">

        <LinearLayout
            android:id="@+id/mapLayout"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1">

            <android.support.v7.widget.CardView
                xmlns:card_view="http://schemas.android.com/apk/res-auto"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                card_view:cardCornerRadius="6dp"
                android:layout_margin="10dp"
                android:clickable="true"
                android:focusable="true"
                android:foreground="?android:selectableItemBackground"
                android:id="@+id/deviceCard"
                android:animateLayoutChanges="true">

                <fragment
                    android:id="@+id/map"
                    android:name="com.google.android.gms.maps.SupportMapFragment"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    tools:context="io.tegaru.beepr.AddNewMapsLocationActivity" />

            </android.support.v7.widget.CardView>

        </LinearLayout>

        <ViewStub
            android:id="@+id/tracker_info_viewstub"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"/>

    </LinearLayout>

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/navigation"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginEnd="0dp"
        android:layout_marginStart="0dp"
        android:background="?android:attr/windowBackground"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/navigation" />

</android.support.constraint.ConstraintLayout>

И вот как я установил макет:

  private void BottonNavBtnPressed()
    {
        ViewStub mapInfoStub = (ViewStub) findViewById(R.id.tracker_info_viewstub);
        mapInfoStub.setLayoutResource(R.layout.tracker_history_layout);
        mapInfoViewStub = mapInfoStub.inflate();

    }
...