【发布时间】:2021-07-26 22:18:49
【问题描述】:
我正在动态添加城市名称作为菜单项,都指向 Home Fragment。但是,当我选择一个城市名称,然后选择任何其他菜单选项时,两个片段会重叠,如下图所示。
主活动
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
drawer = findViewById(R.id.drawer_layout);
navigationView = findViewById(R.id.nav_view);
menuItem = navigationView.getMenu().findItem(R.id.locations);
addCityToMenu("London");
addCityToMenu("New York");
addCityToMenu("Milan");
addCityToMenu("Paris");
addCityToMenu("Monaco");
// Passing each menu ID as a set of Ids because each
// menu should be considered as top level destinations.
mAppBarConfiguration = new AppBarConfiguration.Builder(
R.id.nav_home, R.id.nav_locations, R.id.nav_settings)
.setOpenableLayout(drawer)
.build();
NavController navController = Navigation.findNavController(this, R.id.nav_host_fragment);
NavigationUI.setupActionBarWithNavController(this, navController, mAppBarConfiguration);
NavigationUI.setupWithNavController(navigationView, navController);
}
private void addCityToMenu(String city) {
menuItem.getSubMenu().add(Menu.NONE, R.id.nav_home, 1, city)
.setOnMenuItemClickListener(item -> loadCity(city));
}
public boolean loadCity(String city) {
Toast.makeText(getApplicationContext(), city, Toast.LENGTH_SHORT).show();
Bundle bundle = new Bundle();
bundle.putString("cityName", city);
HomeFragment fragment = new HomeFragment();
fragment.setArguments(bundle);
getSupportFragmentManager().beginTransaction()
.replace(R.id.nav_host_fragment, fragment)
.commit();
drawer.closeDrawers();
return true;
}
fragment_home
<?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"
android:background="#121010"
tools:context=".ui.home.HomeFragment">
<TextView
android:id="@+id/text_home"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:textAlignment="center"
android:textColor="#FFFFFF"
android:textSize="20sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
HomeFragment.java
public class HomeFragment extends Fragment {
private HomeViewModel homeViewModel;
public View onCreateView(@NonNull LayoutInflater inflater,
ViewGroup container, Bundle savedInstanceState) {
homeViewModel =
new ViewModelProvider(this).get(HomeViewModel.class);
View root = inflater.inflate(R.layout.fragment_home, container, false);
if(getArguments()!=null) {
homeViewModel.setText(getArguments().getString("cityName"));
}
final TextView textView = root.findViewById(R.id.text_home);
homeViewModel.getText().observe(getViewLifecycleOwner(), new Observer<String>() {
@Override
public void onChanged(@Nullable String s) {
textView.setText(s);
}
});
return root;
}
}
所有代码都可以在https://github.com/vishnu-android/DynamicNavigationDrawer获得
【问题讨论】:
标签: java android android-fragments navigation-drawer