安卓Material Desigh常用代码介绍3——悬浮按钮FloatingActionButton

版权声明:私聊~~ https://blog.csdn.net/weixin_42875245/article/details/81585704

例子效果

这里写图片描述

代码如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentRight="true"
        android:layout_margin="16sp"
        android:src="@drawable/ic_done"
        android:elevation="8dp"/>

</RelativeLayout>

猜你喜欢

转载自blog.csdn.net/weixin_42875245/article/details/81585704
今日推荐