我在android中使用新的导航架构组件,我在移动到一个新的片段后被困在清除导航堆栈。
例子:
我在loginFragment中,我想要这个片段从堆栈中清除,当我导航到home片段时,这样用户在按下返回按钮时就不会返回到loginFragment。
我使用一个简单的NavHostFragment.findNavController(Fragment).navigate(R.id.homeFragment)来导航。
当前代码:
mAuth.signInWithCredential(credential)
.addOnCompleteListener(getActivity(), new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (task.isSuccessful()) {
NavHostFragment.findNavController(LoginFragment.this).navigate(R.id.homeFragment);
} else {
Log.w(TAG, "signInWithCredential:failure", task.getException());
}
}
});
我尝试使用导航()中的NavOptions,但返回按钮仍然将我送回loginFragment
NavOptions.Builder navBuilder = new NavOptions.Builder();
NavOptions navOptions = navBuilder.setPopUpTo(R.id.homeFragment, false).build();
NavHostFragment.findNavController(LoginFragment.this).navigate(R.id.homeFragment, null, navOptions);
我想你的问题是关于如何使用Pop Behavior / Pop to / app:popUpTo (in xml)
在文档,
在导航前弹出一个给定的目的地。这将从后堆栈中弹出所有不匹配的目的地,直到找到该目的地。
示例(简单的求职应用程序)
我的start_screen_nav图是这样的:
startScreenFragment (start) -> loginFragment -> EmployerMainFragment
-> loginFragment -> JobSeekerMainFragment
如果我想导航到EmployerMainFragment并弹出所有包括startScreenFragment,那么代码将是:
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/startScreenFragment"
app:popUpToInclusive="true" />
如果我想导航到EmployerMainFragment并弹出所有排除startScreenFragment的代码,那么代码将是:
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/startScreenFragment"/>
如果我想导航到EmployerMainFragment和弹出loginFragment而不是startScreenFragment,那么代码将是:
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/loginFragment"
app:popUpToInclusive="true"/>
OR
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/startScreenFragment"/>
我想你的问题是关于如何使用Pop Behavior / Pop to / app:popUpTo (in xml)
在文档,
在导航前弹出一个给定的目的地。这将从后堆栈中弹出所有不匹配的目的地,直到找到该目的地。
示例(简单的求职应用程序)
我的start_screen_nav图是这样的:
startScreenFragment (start) -> loginFragment -> EmployerMainFragment
-> loginFragment -> JobSeekerMainFragment
如果我想导航到EmployerMainFragment并弹出所有包括startScreenFragment,那么代码将是:
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/startScreenFragment"
app:popUpToInclusive="true" />
如果我想导航到EmployerMainFragment并弹出所有排除startScreenFragment的代码,那么代码将是:
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/startScreenFragment"/>
如果我想导航到EmployerMainFragment和弹出loginFragment而不是startScreenFragment,那么代码将是:
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/loginFragment"
app:popUpToInclusive="true"/>
OR
<action
android:id="@+id/action_loginFragment_to_employerMainFragment"
app:destination="@id/employerMainFragment"
app:popUpTo="@+id/startScreenFragment"/>