问题标签 [android-navigationview]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
1418 浏览

android - Android Navigation Drawer - 将列表替换为其他列表 onClick

我正在尝试在材料设计中实现一个简单的导航抽屉,所以我的抽屉顶部有一个标题和一些文本项(A:CompactHeader Drawer,...)(见图1)。单击标题图像时,应该打开一个列表(B:mikepenz@gmail.com,...)并“覆盖”我现有的文本项(A)(见图2)。如果选择了文本项 (B),则原始列表 (A) 应回到其原始位置,并且 (B) 不再可见(见图 1)。

图片1 图二

注意:这些截图来自一个教程,但代码太混乱了。我正在寻找一个相对简单的解决方案......我在考虑Fragments,但我不知道这是否是解决这个问题的正确方法。

0 投票
5 回答
19534 浏览

android - How I can remove the unnecessary top padding of the Navigation view?

There's an unnecessary top padding between the header and the first item shown in this picture.

enter image description here

How it can be removed?

you can find the source code here: https://github.com/chrisbanes/cheesesquare

0 投票
4 回答
14465 浏览

android - NavigationView:如何在没有子组的情况下插入分隔符?

如何在新的 NavigationView 中放置没有标题子组的分隔符?

我想在没有 Configuración 标题的情况下在 amigos 和 ajustes 项目之间添加一行。

谢谢!!!

0 投票
1 回答
19558 浏览

android - 在 NavigationView 中禁用图标 colorStateList

在我今天的应用程序中,我的图标不仅有一种颜色,而且在某些情况下有两种颜色,具体取决于我的应用程序中的数据状态。这意味着我不能在NavigationView.

看起来像 new ,除非我为列表中使用的图标NavigationView指定 a ,否则将为我设置一个默认值,它使用我在主题中定义的 etc 。ColorStateListColorStateListcolorPrimary

我有没有办法强制 NavigationView 停止为我的图标着色?

0 投票
2 回答
64596 浏览

android - NavigationView 和自定义布局

我正在使用这样的设计支持库NavigationView

我已经设置了这个菜单:

有没有办法将 NavigationView 与布局而不是菜单一起使用?

0 投票
5 回答
37606 浏览

android - 如何更改 NavigationView 中的分隔符颜色?

我正在尝试使用 NavigationView 来实现 NavigationDrawer。我通过在菜单中设置组 ID 添加了分隔符。但是我看不到分隔符。我猜这是因为分隔符颜色与背景相同。所以我想改变分隔符的颜色。但我没有办法改变它。谁能帮我?

History在屏幕截图中, and之间似乎有一个分隔空间Settings,但您看不到它。

在此处输入图像描述

activity_main.xml

抽屉.xml

0 投票
5 回答
35546 浏览

android - 导航抽屉图标大小是多少?

我需要知道导航抽屉图标的正确大小(画板和内容)。

它没有说明导航抽屉规格: http ://www.google.com.br/design/spec/patterns/navigation-drawer.html#navigation-drawer-specs

谢谢!

0 投票
6 回答
25793 浏览

android - How to add custom views in the new NavigationView

I'm trying to add a switch as menuitem in NavigationView like this

enter image description here

I used the the actionViewClass attribute but it only shows the title.

0 投票
2 回答
2021 浏览

android - Android 设计支持库导航视图自定义

我有几个关于新导航视图的问题。

1)滚动导航视图滚动整个视图,但我只想让标题留在它的位置并且导航项滚动。

在此处输入图像描述

2)要实现分隔线黑白导航项目,我可以这样做:

但如果没有子标题,它就不起作用。我试图给它一个空白字符串,但这只会留下一个垂直空白而不是副标题。我需要由分隔符分隔但没有子标题的导航项组。

3)动态操作导航项。在此之前,我曾经使用垂直列表视图作为导航项。我只是将可见性设置为我不想要的任何导航项。如何动态更改导航项?

0 投票
5 回答
29840 浏览

android - 如何在 NavigationView 中获取菜单项?

我正在使用android.support.design.library材料设计。

我想要的是在用户未登录时隐藏一些菜单项。

现在我无法将菜单项放入NavigationView.

我试过了:

但它不起作用。

我怎样才能做到这一点?

谢谢。