作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Google 是否允许使用图标 transitions such as these由开发者创建?还是开发人员有责任创建这种“令人愉快”的过渡?我真的很想在我的应用程序中实现这些。
Specifically icons like this
最佳答案
您可以使用 AnimatedDrawable 和基于位图的帧创建动画图标。在 L 上,您可以使用 AnimatedStateListDrawable 来创建有状态的动画(例如复选框动画)。
这是一个 AnimatedDrawable 示例(实际上这是 L 预览上复选框的实现),使用可以从代码启动和停止的 15 毫秒长帧:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:duration="15" android:drawable="@drawable/my_icon_frame_000" />
...additional frames...
</animation-list>
<animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_enabled="false" android:state_checked="true">
<bitmap android:src="@drawable/btn_check_to_on_mtrl_015" android:tint="?attr/colorControlActivated" android:alpha="?attr/disabledAlpha" />
</item>
<item android:state_enabled="false">
<bitmap android:src="@drawable/btn_check_to_on_mtrl_000" android:tint="?attr/colorControlNormal" android:alpha="?attr/disabledAlpha" />
</item>
<item android:state_checked="true" android:id="@+id/on">
<bitmap android:src="@drawable/btn_check_to_on_mtrl_015" android:tint="?attr/colorControlActivated" />
</item>
<item android:id="@+id/off">
<bitmap android:src="@drawable/btn_check_to_on_mtrl_000" android:tint="?attr/colorControlNormal" />
</item>
<transition android:fromId="@+id/off" android:toId="@+id/on">
<animation-list>
<item android:duration="15">
<bitmap android:src="@drawable/btn_check_to_on_mtrl_000" android:tint="?attr/colorControlNormal" />
</item>
...additional frames...
</animation-list>
</transition>
<transition android:fromId="@+id/on" android:toId="@+id/off">
<animation-list>
<item android:duration="15">
<bitmap android:src="@drawable/btn_check_to_off_mtrl_000" android:tint="?attr/colorControlActivated" />
</item>
...additional frames...
</animation-list>
</transition>
</animated-selector>
关于android-animation - Android L "delightful"可绘制转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25371958/
Google 是否允许使用图标 transitions such as these由开发者创建?还是开发人员有责任创建这种“令人愉快”的过渡?我真的很想在我的应用程序中实现这些。 Specifical
我正在使用这个 WebView 扩展: https://github.com/delight-im/Android-AdvancedWebView Google Play 管理中心正在请求 targe
我正在使用 delight-im/Android-AdvancedWebView 加载带有额外 header (用户身份验证 token )的 url,但 header 仅随初始请求一起发送,这是 w
我是一名优秀的程序员,十分优秀!