问题标签 [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 回答
500 浏览

android - 使用 mikepenz/MaterialDrawer 库时解决依赖项时出错

使用库时出现以下错误:

C:\ASP\example\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.0.0\res\values-v23\values-v23.xml 错误:(2) 检索父级时出错对于项目:未找到与给定名称“android:TextAppearance.Material.Widget.Button.Inverse”匹配的资源。错误:(2) 检索项目的父项时出错:找不到与给定名称“android:Widget.Material.Button.Colored”匹配的资源。错误:任务“:app:processDebugResources”执行失败。com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\Aayush Karwatkar\AppData\Local\Android\sdk1\build-tools\23.0.0\ aapt.exe'' 以非零退出值 1 结束

Build.Gradle 文件是这样的:

0 投票
1 回答
396 浏览

android - Visible ActionBar with opened NavDrawer

Is it possible to keep the actionbar visible using the mikepenz's material drawer library?

Visible ActionBar with opened NavDrawer

0 投票
1 回答
1578 浏览

android - 在 FrameLayout 上替换导航栏中的 ViewPager 片段时滞后?

我使用https://github.com/mikepenz/MaterialDrawer作为 Drawer 的库,我使用https://github.com/florent37/MaterialViewPager作为 View Pager。

我面临的问题是,当我单击抽屉中的列表项并关闭 drwawer 时,我会遇到一些滞后(某种口吃滞后),然后替换片段。我在一个片段中面对这个,它是一个 ViewPager over is a fragment。

看图片

片段(我在关闭抽屉的过程中面临滞后(一种口吃滞后),之后将其替换为其他框架):

ViewPager 的内部片段:

谢谢!

0 投票
2 回答
2174 浏览

android - mikepenz 材料抽屉无法加载抽屉项目的 url

我也使用 mikepenz 材质抽屉,但我遇到了关于加载 URL 以更新抽屉项目图标的问题,但仍然失败。我无法解决它。 https://github.com/mikepenz/MaterialDrawer

在此处输入图像描述

请帮我。谢谢

0 投票
1 回答
728 浏览

android - MaterialDrawer library turns a translucent status bar into a opaque one

I am using MaterialDrawer library for adding a drawer to my activities. The activities must have translucent status bar. Like the picture below:

enter image description here

This is the top part of my activity, when the library has not added to it yet.

When I add a drawer using the library:

And the DrawerMenu helper class:

I will get this result:

enter image description here

The status bar is obviously non translucent and activity content is not below it.

However when I open the drawer, it goes beneath the status bar:

enter image description here

Also this is the theme that I'm applying to the activity:

What is the problem here?

0 投票
1 回答
97 浏览

java - 如何添加链接页面抽屉菜单

我正在使用 mikepenz 抽屉。但小问题前:我需要精英包,但在购买 google play 时需要精英包。我需要那里的指导。

如何添加精英项目去精英页面类?

0 投票
1 回答
286 浏览

android - 方向改变时显示错误的片段

我知道这个特定问题有几个答案,但是没有一个能帮助我解决它。

我正在开发一个具有抽屉导航(Mike Penz 抽屉导航)的应用程序。通过选择任何项目,用户被导航到相应的片段。片段完美地工作,并在方向变化时保持其状态。但是,其中一个片段有一个按钮,可以用新片段替换当前片段。当新片段出现在屏幕上时,如果用户改变了设备的方向,则会显示前一个片段。

流程:抽屉项目选择>片段A>按钮>片段B>改变方向>片段A。

编辑: 这就是第一个片段的名称:(开关)

这就是第二个片段的名称:

抽屉

onResume() 方法实现了用户同步的逻辑。没有为片段状态编写任何内容。

0 投票
1 回答
613 浏览

android - 片段未正确替换

我使用Mike Penz的MaterialDrawer实现了一个 MiniDrawer。

它工作正常,但是当我尝试用另一个片段替换框架的内容时,内容会被替换,但旧内容仍保留在那里,并且两个元素都停留在屏幕上。

为了更好地理解,您可以在下面看到图像(红色数字不是屏幕截图的一部分)

在此处输入图像描述

MainActivity.java:

活动主.xml:

询问您是否需要更多信息。任何帮助表示赞赏。

0 投票
2 回答
3686 浏览

android - 如何通过 android 中的 url 为导航抽屉设置用户头像?

这是我的 header.xml

这是我的 oncreate 方法,我正在使用导航视图

我试过这个,但图像根本没有改变?什么都没有发生,我已经包含了universalimageloader.jar,并添加了所有依赖项。可能是什么问题?

0 投票
1 回答
732 浏览

android - 从数组列表中设置抽屉项目并在 MaterialDrawer 中单击

在我的 android 应用程序中,我将 greeDAO ORM 用于 sqlite。所以我检索我的类别列表:

每个ArcticleCategory对象都有名称和描述属性,因此我可以将它们用于抽屉项目的名称和描述。我的问题是如何将此列表添加到myDrawer项目以及如何管理它们的点击事件。这是我的抽屉代码:

请记住,我有一些我手动的静态项目和要抽屉的项目以及来自数据库的一些动态项目,因此在这种情况下点击事件对我来说非常重要。