gpt4 book ai didi

java - 底部导航项选定动画 onBackPressed

转载 作者:行者123 更新时间:2023-12-02 12:26:20 25 4
gpt4 key购买 nike

我有一个带有 BottomNavigation 的应用程序(3 个项目)。 Item 1 加载 Fragment 1,Item 2 加载 Fragment 2,Item 3 加载 Fragment 3。当在 BottomNavigation 中选择一项时,该项的 View 保持蓝色且文本更大。我已经实现了 onBackPressed,它返回 fragment 历史记录(BackStack)。但是,当我后退时,BottomNavigation 中的 View 就会停止。因此,如果我在 fragment 3 中,然后按后退按钮,它会返回到 fragment 2,则 BottomNavigationView 显示我在 fragment 3 中,如果我再次按后退按钮,我会转到 fragment 1,但 BottomNavigationView 不会不更新,它保留在 fragment 3 中。屏幕短片将显示我在说什么。抱歉我的英语不好,解释也不好。

enter image description here

enter image description here

MainActivity.java

public class MainActivity extends AppCompatActivity {

private TextView mTextMessage;

private BottomNavigationView.OnNavigationItemSelectedListener mOnNavigationItemSelectedListener
= new BottomNavigationView.OnNavigationItemSelectedListener() {

@Override
public boolean onNavigationItemSelected(@NonNull MenuItem item) {
Fragment selectedFragment = null;
switch (item.getItemId()) {
case R.id.navigation_home:
selectedFragment = Fragment1.newInstance();
getSupportFragmentManager().beginTransaction().replace(R.id.content, selectedFragment).addToBackStack(null).commit();
return true;
case R.id.navigation_dashboard:
selectedFragment = Frament2.newInstance();
getSupportFragmentManager().beginTransaction().replace(R.id.content, selectedFragment).addToBackStack(null).commit();
return true;
case R.id.navigation_notifications:
selectedFragment = Fragment3.newInstance();
getSupportFragmentManager().beginTransaction().replace(R.id.content, selectedFragment).addToBackStack(null).commit();
return true;
}
return false;
}

};

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

BottomNavigationView navigation = (BottomNavigationView) findViewById(R.id.navigation);
navigation.setOnNavigationItemSelectedListener(mOnNavigationItemSelectedListener);
}

@Override
public void onBackPressed() {
if (getFragmentManager().getBackStackEntryCount() > 0) {
getFragmentManager().popBackStack();
} else {
super.onBackPressed();
}
}

最佳答案

来自Material Design guidelines for bottom navigation :

On Android, the Back button does not navigate between bottom navigation bar views.

来自Developer Training for Back Navigation :

Note: You should not add transactions to the back stack when the transaction is for horizontal navigation (such as when switching tabs)

因此,在根据用户与 BottomNavigationView 的交互替换 fragment 时,不应使用返回堆栈。

如果您选择忽略这些准则,答案可能是查看 FragmentManager.OnBackStackChangedListener 并在弹出后退堆栈时激活相应的导航项。

关于java - 底部导航项选定动画 onBackPressed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45473515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com