简体   繁体   中英

Convert Bottom Navigation Activity to Fragment

Im trying to use the android Bottom Navigation activity as a fragment but the Android Studio 3.5 use new NavController and NavigationUI which is giving me hard time to figure out how it works and return a run time error.

public class BottomFragment extends Fragment {

Activity activity;

public BottomFragment(Activity activity) {
    this.activity = activity;
}


@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    View root = inflater.inflate(R.layout.activity_bottom_fragment, container, false);
    BottomNavigationView navView =  root.findViewById(R.id.nav_view);

    AppBarConfiguration appBarConfiguration = new AppBarConfiguration.Builder(
            R.id.navigation_home, R.id.navigation_dashboard, R.id.navigation_notifications)
            .build();

    NavController navController = Navigation.findNavController(activity, R.id.nav_host_fragment);//error here
    NavigationUI.setupActionBarWithNavController((AppCompatActivity) activity, navController, appBarConfiguration);
    NavigationUI.setupWithNavController(navView, navController);


    return root;
}}

Main class

public class MainActivity extends AppCompatActivity {

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


    getSupportFragmentManager().beginTransaction()
            .replace(R.id.mainContainer,new BottomFragment(this)).commit();
}

main activity layout

 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.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:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <FrameLayout android:id="@+id/mainContainer" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout> 

Run time error

java.lang.IllegalArgumentException: ID does not reference a View inside this Activity
    at android.app.Activity.requireViewById(Activity.java:2678)
    at androidx.core.app.ActivityCompat.requireViewById(ActivityCompat.java:363)
    at androidx.navigation.Navigation.findNavController(Navigation.java:58)
    at com.h_byk.test000.BottomFragment.onCreateView(BottomFragment.java:36)

You should place some of you code from public View onCreateView to onActivityCreated function.

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                     Bundle savedInstanceState) {
    View root = inflater.inflate(R.layout.activity_bottom_fragment, container, false);
    return root;
}

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    BottomNavigationView navView =  root.findViewById(R.id.nav_view);

    AppBarConfiguration appBarConfiguration = new AppBarConfiguration.Builder(
        R.id.navigation_home, R.id.navigation_dashboard, R.id.navigation_notifications)
        .build();

    NavController navController = Navigation.findNavController(activity, R.id.nav_host_fragment);//error here
    NavigationUI.setupActionBarWithNavController((AppCompatActivity) activity, navController, appBarConfiguration);
    NavigationUI.setupWithNavController(navView, navController);
}

Try this. Anyway, you should not avoid new google nav component, try to follow google documentation. Read this .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM