Не удается найти правильный контекст для .findNavController () - PullRequest
0 голосов
/ 10 апреля 2020

Итак, я работаю над приложением Android et c. У меня есть эта Main2Activity с bottomNavView, который помогает мне переключаться между ProfileFragment и HomeFragment. Дело в том, что я хочу использовать другой navView внутри моего ProfileFragment, я имитировал какой-то вид TabView, чтобы я мог видеть два разных фрагмента внутри моего ProfileFragment.

Итак, это мой Main2Activity

public class Main2Activity extends AppCompatActivity{

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

        BottomNavigationView navView = findViewById(R.id.nav_view);
        AppBarConfiguration appBarConfiguration = new AppBarConfiguration.Builder(
                R.id.navigation_home, R.id.navigation_settings, R.id.navigation_new_post,
                R.id.navigation_notifications, R.id.navigation_profile)
                .build();
        NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
        NavigationUI.setupActionBarWithNavController(this, navController, appBarConfiguration);
        NavigationUI.setupWithNavController(navView, navController);
    }

    public BottomNavigationView getBottomNavigationView(){
        return findViewById(R.id.nav_view);
    }

    public Activity getActivity(){
        return this;
    }
}

Это мой ProfileFragment, и вот где проблема. Я не могу найти контекст для использования в findNavController () и setupWithNavController ():

public class ProfileFragment extends Fragment {

    private ProfileViewModel notificationsViewModel;
    private boolean isLoading = false;

    public ProfileFragment() {
    }

    public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        notificationsViewModel = ViewModelProviders.of(this).get(ProfileViewModel.class);
        View root = inflater.inflate(R.layout.fragment_profile, container, false);



        BottomNavigationView navView = root.findViewById(R.id.profile_nav_view);
        AppBarConfiguration appBarConfiguration = new AppBarConfiguration.Builder(
                R.id.nav_my_posts, R.id.nav_applied_to)
                .build();
        NavController navController = Navigation.findNavController(getActivity(), R.id.profile_nav_host_fragment);
        NavigationUI.setupActionBarWithNavController(new Main2Activity(), navController, appBarConfiguration);
        NavigationUI.setupWithNavController(navView, navController);

        return root;
    }

}

Ошибка, которую я продолжаю получать: java .lang.IllegalArgumentException: ID не ссылается на View внутри этого действия

Кто-нибудь?

ОБНОВЛЕНИЕ: Это трассировка стека

E/AndroidRuntime: FATAL EXCEPTION: main
    Process: com.example.heirup, PID: 17523
    java.lang.IllegalArgumentException: ID does not reference a View inside this Activity
        at android.app.Activity.requireViewById(Activity.java:2772)
        at androidx.core.app.ActivityCompat.requireViewById(ActivityCompat.java:363)
        at androidx.navigation.Navigation.findNavController(Navigation.java:58)
        at com.example.heirup.ui.profile.ProfileFragment.onCreateView(ProfileFragment.java:38)
        at androidx.fragment.app.Fragment.performCreateView(Fragment.java:2600)
        at androidx.fragment.app.FragmentManagerImpl.moveToState(FragmentManagerImpl.java:881)
        at androidx.fragment.app.FragmentManagerImpl.addAddedFragments(FragmentManagerImpl.java:2100)
        at androidx.fragment.app.FragmentManagerImpl.executeOpsTogether(FragmentManagerImpl.java:1874)
        at androidx.fragment.app.FragmentManagerImpl.removeRedundantOperationsAndExecute(FragmentManagerImpl.java:1830)
        at androidx.fragment.app.FragmentManagerImpl.execPendingActions(FragmentManagerImpl.java:1727)
        at androidx.fragment.app.FragmentManagerImpl$2.run(FragmentManagerImpl.java:150)
        at android.os.Handler.handleCallback(Handler.java:873)
        at android.os.Handler.dispatchMessage(Handler.java:99)
        at android.os.Looper.loop(Looper.java:214)
        at android.app.ActivityThread.main(ActivityThread.java:7081)
        at java.lang.reflect.Method.invoke(Native Method)
        at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:494)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:965)
I/Process: Sending signal. PID: 17523 SIG: 9


Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...