如何在第二个片段中添加“向上”按钮,单击它会回到jetpack导航中的第一个片段?

时间:2019-04-01 06:34:43

标签: java android navigation android-architecture-components android-jetpack

我正在尝试实现Jetpack导航,我有两个片段。我想在第二个片段的工具栏中添加后退按钮,当我单击它时,我希望它导航回到第一个片段。

fragment_fragment1.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical">

<!-- TODO: Update blank fragment layout -->
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Fragment 1"
    android:textSize="25dp"/>
<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Navigate to 2nd Fragment"/>

Fragment1.java

public class Fragment1 extends Fragment {
private Button button;
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {

    return inflater.inflate(R.layout.fragment_fragment1, container, false);
}

@Override
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
    super.onViewCreated(view, savedInstanceState);
    button = view.findViewById(R.id.button);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Navigation.findNavController(v).navigate(R.id.action_fragment1_to_fragment2);
        }
    });
}
}

fragment_fragment2

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center">

<!-- TODO: Update blank fragment layout -->
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Fragment 2"
    android:textSize="25dp"/>

Fragment2.java

public class Fragment2 extends Fragment {    
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
                         Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    return inflater.inflate(R.layout.fragment_fragment2, container, false);
}

}

1 个答案:

答案 0 :(得分:0)

在活动中,您需要使用工具栏设置navController。如果您使用的是自定义工具栏,则可以通过调用Navigation.setupWithNavController(toolbar, navController)来实现。相反,如果您使用的是默认的actionBar活动,则需要启用setDisplayHomeAsUpEnabled(true),在optionItemSelected中,单击向上时需要执行NavigationUp。