I use DrawerLayout with NavigationView . By clicking on the items, different activations are loaded.

Previously, instead of NavigationView, I used a ListView with an adapter. And it was all gorgeous. But since NavView tool is more modern and supposedly convenient, I decided to rewrite it.

The impression is that NavView is good only for absolutely simple default menus, and when it comes to customization, it's better to use ListView or Recycler. Or am I wrong?

  • What's the problem? if it's easier for you to work with ListView for example and it fits your needs please - Shwarz Andrei
  • @ShwarzAndrei, read that NavigationView is Best Practice, and ListView is an outdated approach - YourFrend
  • 2
    Well ListView yes, use RecyclerView. In general, everything depends on the current task, and that you want to customize using NavView from the very beginning gives you a lot out of the box, takes into account Material and shoots hands when you want to block something, but on the other hand limits your customization, so the choice is up to the developer . - Shwarz Andrei

0