将底部导航 Activity 转换为片段

Convert Bottom Navigation Activity to Fragment

我正在尝试使用 android 底部导航 activity 作为片段,但 Android Studio 3.5 使用新的 NavController 和 NavigationUI,这让我很难弄清楚它是如何实现的有效并且 return 出现 运行 时间错误。

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;
}}

主要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();
}

主要activity布局

<?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>

运行时间错误

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)

您应该将一些代码从 public View onCreateView 放置到 onActivityCreated 函数。

@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);
}

试试这个。无论如何,你不应该避免新的 google 导航组件,尽量遵循 google 文档。阅读 this.