FloatingActionButton的使用

效果图:
这里写图片描述

给大家说的就是右下角的悬浮按钮

他的使用很简单,只需要在AS中添加依赖就可以了
在Design包中

compile 'com.android.support:design:25.0.0'

布局文件

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    tools:context="fragment.ShowFragment">

    <!-- TODO: Update blank fragment layout -->
    <ListView
        android:id="@+id/lv_showFragment"
        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_gravity="bottom|right"
        android:layout_margin="20dp"
        app:backgroundTint="#fff"
        android:src="@mipmap/back"
        />
</FrameLayout>

这里面主要是在碎片上添加一个ListView,用来展示数据,属性设置为match_parent,添加FloatingActionButton就可以了。
修改颜色:

app:backgroundTint="#fff"

FloatingActionButton的阴影效果:

app:elevation="6dp"//显示的阴影大小
app:pressedTranslationZ="12dp"//点击时的阴影大小

Fragment中的代码:
先找出FloatingActionButton控件:

@Override
    public View onCreateView(final LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
FloatingActionButton fab =(FloatingActionButton) view.findViewById(R.id.fab);
}

随后设置点击事件就OK了

fab.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                //返回ListView第一条数据
                lv.setSelection(0);
            }
        });
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值