SlidingRootNav
SlidingRootNav copied to clipboard
access item in fragment
trafficstars
hi, i use this code but i have error
slidingRootNav = new SlidingRootNavBuilder(getActivity()) .withMenuOpened(false) .addDragListener(this) .withContentClickableWhenMenuOpened(false) .withSavedState(savedInstanceState) .withMenuLayout(R.layout.nav_header) .withGravity(SlideGravity.RIGHT) .inject();
textTestOnClick = view.findViewById(R.id.vvv);
textTestOnClick.setText("tr");
textTestOnClick.setOnClickListener(this);
the error is : Attempt to invoke virtual method 'void android.widget.TextView.setText(java.lang.CharSequence)' on a null object reference
i checked vvv id that is defind in nav_header layout
I have encountered the same problem. Have you solved it?