Android 导航抽屉最大项目数
Android navigation drawer max number of items
android 抽屉式导航栏的项目数量上限是多少?
Navigation Drawer 后面是简单的ListView 和ArrayAdapter。您可以在 ListView 中设置多少项目。
As ArrayAdapter size()
returns 一个整数,这意味着您可以将最大数量设置为 Integer.MAX_VALUE
When there is insufficient space to support tabs, side navigation is a good alternative. Side navigation can display many navigation targets at once. A drawer remains hidden until invoked by the user.
从技术上讲,您可以使用 NavigationView。
由于它实现了 RecyclerView,因此导航抽屉中的项目没有限制。
通常 NavDrawer 是一个显示应用程序主要导航选项的面板,它是信息层次结构中更高层的组件。
然后将项目的数量限制为应用程序的顶级功能以帮助用户导航[=34]是一个好习惯=].
请记住,如果用户需要滚动导航抽屉以查看所有项目,他们可能永远不会使用隐藏的项目。
如果您需要更多信息:
android 抽屉式导航栏的项目数量上限是多少?
Navigation Drawer 后面是简单的ListView 和ArrayAdapter。您可以在 ListView 中设置多少项目。
As ArrayAdapter size()
returns 一个整数,这意味着您可以将最大数量设置为 Integer.MAX_VALUE
When there is insufficient space to support tabs, side navigation is a good alternative. Side navigation can display many navigation targets at once. A drawer remains hidden until invoked by the user.
从技术上讲,您可以使用 NavigationView。
由于它实现了 RecyclerView,因此导航抽屉中的项目没有限制。
通常 NavDrawer 是一个显示应用程序主要导航选项的面板,它是信息层次结构中更高层的组件。
然后将项目的数量限制为应用程序的顶级功能以帮助用户导航[=34]是一个好习惯=].
请记住,如果用户需要滚动导航抽屉以查看所有项目,他们可能永远不会使用隐藏的项目。
如果您需要更多信息: