问题标签 [material-design]
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.
android - 新的 Android Material 设计中的 Action Bar(Toolbar) 图标应该有多大?
我尝试搜索设计指南,但找不到与此相关的任何内容。我正在尝试找出新 L 版本中操作栏图标的最佳尺寸。这是我要实现的目标的示例:
我尝试了以前的 48dp 尺寸,但它看起来比那张照片中的要大很多。
android - 在 Eclipse 中导入 Android L 示例。(材料设计样本)
我试图在 Eclipse 中导入 Android L 示例(基于 gradle)。在配置中更改 src 文件路径后构建项目。但在清单中,它强制我将 min sdk 版本设置为“L”。我能够在 Android L 模拟器中运行该应用程序。如何运行/支持以前的 API 级别?
android-animation - Android L Circular Reveal on a Dialog
I'm trying to create a circular reveal on a Dialog
. I would think that you would be able to get the View
in the onCreate
of the Dialog
, hide it, and then reveal it using ViewAnimationUtils.createCircularReveal
.
I'm having issues getting the View
due to a requestWindowFeature()
error, which I can't seem to resolve.
How exactly do you apply the Material Design Animations to Dialogs?
EDIT
I have successfully hidden the dialog by applying the code here to the dismiss()
method. But when I try to do the circular reveal to show, the view stays invisible.
android - 如何在具有 Holo 主题的旧版本上启动具有 Material Theme 的项目?
如何在带有 Holo 主题的旧版本上启动带有 Mareial 主题的项目?我有 2 个文件夹:values 和 values-v21。每个这个文件夹都有styles.xml。价值观:风格:
值-v21:样式:
我的 build.gradle:
android - 如何创建 Android 材料设计 UI 小部件?
我确实阅读了新的 android 材料设计指南,但我无法找到有关如何创建此 UI 小部件(元素)的任何信息。Gmail、S 转换器等应用程序已更新其应用程序以支持新的材料设计。
我已经添加了它的截图。这是它的链接。因为低分我不能放图片。对此感到抱歉
关于我该如何做的任何建议?
android - 如何在android材料设计风格中创建按钮阴影
新的材料设计指南引入了高架按钮,这些按钮可以投射出漂亮的阴影。根据预览版 SDK 文档elevation
,新 SDK 中将提供可用的属性。但是,现在有什么方法可以达到类似的效果吗?
android - 按源更改颜色 actionBar 材料设计
我想将 ActionBar 的颜色更改为“材质设计”样式,但是 setbackgrounddrawable 方法将 ActionBar 的样式更改为“holo”。有谁知道“Android SDK L”是否有新方法?谢谢。
android - Android L -- 在视图上播放波纹效果
我正在尝试在某个时间(而不是在被触摸的视图上)在视图上播放涟漪效果(来自 Android L)。具体来说,当用户成功更改一些文本时,我希望某个视图发挥绿色涟漪效果以显示成功。有没有办法做到这一点?
我尝试将 RippleDrawable 放入动画中,将 RippleDrawable 作为我的“成功视图”的背景。但是,我无法弄清楚如何播放我所描述的波纹动画。
PS我的项目现在只有Android L,所以我不担心向后兼容性。
android - 具有彩色背景和波纹效果的列表视图选择器
ListView
android L 开发者预览版中的标准选择器colorControlHighlight
用于触摸时的波纹效果,并且在未聚焦状态下具有透明背景。
我想定义一个ListView
具有彩色背景的项目,并且在触摸时仍然显示出具有相同突出显示颜色的波纹效果。现在,如果我定义以下可绘制对象:
它可以工作,但波纹从ListView
项目的中间开始,无论触摸位置如何。如果我在 之外使用相同的背景ListView
,例如对于 a LinearLayout
,它会像预期的那样工作(波纹从触摸位置开始)。