android – 浮动动作按钮为较低版本

前端之家收集整理的这篇文章主要介绍了android – 浮动动作按钮为较低版本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法我可以实现浮动按钮工作4.0和更高版本的 android

我已经在谷歌加了,但我还没有找到任何教程.只为Android l预览.谷歌用来做什么?

解决方法

您现在可以使用支持设计库中的 FloatingActionButton.将此依赖关系添加到您的gradle构建文件中:
compile 'com.android.support:design:22.2.0'

然后将FloatingActionButton添加到布局文件中:

<android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="end|bottom"
        android:layout_margin="@dimen/fab_margin"
        android:src="@drawable/ic_done" />

Chris Banes的示例项目:https://github.com/chrisbanes/cheesesquare.

原文链接:https://www.f2er.com/android/313046.html

猜你在找的Android相关文章