问题标签 [materialdrawer]

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 投票
1 回答
81 浏览

android - 关闭新片段上的折叠材质抽屉菜单项

我正在为我的项目使用 mike penz材料抽屉,除了这个问题,它的工作效果很好。在访问了属于折叠菜单的上一个片段后,例如,如屏幕截图所示,创建新作业然后我转到Profile,我希望在这种情况下关闭该项目所属的折叠菜单自动地。任何帮助表示赞赏。 截屏

0 投票
1 回答
292 浏览

android - material drawer mikepenz customize

I used the material drawer library to build the drawer. Instead of displaying a list of users(num 4 and 5), I want to display a list of objects that belong to user ( for example :CARS)in the header drawer. In fact, only one user logs into the application (num 1) and the selected object that belong to him(like : one of his cars) is showing in num #2 and 3...

by click on each object ,the profile pic(num 1) will not change or replace by choosed object picture.

here is image of what i want.

pic

in this URL @mikepenz explain about it but i didnt get it at all.

here is my class :

0 投票
1 回答
23 浏览

android - 从 mikepenz 材料抽屉中的数组中获取配置文件项目

如您所见,有一些示例配置文件项目绑定到抽屉进行测试(它由 制成IProfile),但我想从中获取它们arraylist<user>

这是示例代码:

此配置文件将添加到accountHeaderaddProfiles(profile,profile1,...);方法。

但我想从数组中设置配置文件项...我正在尝试IProfile从我的用户中创建一个数组:

喜欢以这种方式获取个人资料:

profiles但是如何从Array中获取这些项目并在addProfiles()方法中使用?请记住,此方法来自库,我无法更改。

0 投票
1 回答
49 浏览

reactjs - 在侧菜单的路线中反应路线

我有两种类型的路由,一种是网站/应用程序级别,一种是 SideMenu 级别,这是一种嵌套路由。我的问题是通过单击 SideMenu 的菜单项来更改内容。不知何故,我无法正确完成这项工作。一个重要的注意事项,我使用react-router-dom v6

在我的应用程序中,我有以下内容:

在 MainApp 我有以下内容:

我的 SideMenu 看起来像这样:

最后是 ListItems,它们是 SideMenu 的菜单项:

通过将句柄单击传递给列表项,我确实使用道具钻孔使其工作。但我更喜欢路由器,因为它更干净、更容易理解。

所以我的问题是,如何在路由器中使用带有路由器的 SideMenu 导航内容?