android fab 弹出菜单,点击FAB弹出菜单 – SpringFloatingActionMenu

SpringFloatingActionMenu

这是一个makovkastar的FloatingActionButton基础上的控件,主要效果是点击FAB会弹出菜单,并有动画效果.所以FAB的所有特性都能用,比如当列表滚动自动隐藏等.

Screenshot 截图

E3uMvq.gif

Usage 用法

Add the dependency to yourbuild.gradle.

在build.gradle添加依赖

dependencies {

compile 'com.tiancaicc.springfloatingactionmenu:library:0.0.2'

}

setup in ActivityonCreatemethod

在onCreate方法中设置

//create your own FAB

/必须手动创建FAB, 并设置属性

final FloatingActionButton fab = new FloatingActionButton(this);

fab.setType(FloatingActionButton.TYPE_NORMAL);

fab.setImageResource(icon);

fab.setColorPressedResId(R.color.colorPrimary);

fab.setColorNormalResId(R.color.fab);

fab.setColorRippleResId(R.color.text_color);

fab.setShadow(true);

new SpringFloatingActionMenu.Builder(this)

.fab(fab)

//add menu item via addMenuItem(bgColor,icon,label,label color,onClickListener)

//添加菜单按钮参数依次是背景颜色,图标,标签,标签的颜色,点击事件

.addMenuItem(R.color.photo, R.mipmap.ic_messaging_posttype_photo, "Photo", R.color.text_color,this)

.addMenuItem(R.color.chat, R.mipmap.ic_messaging_posttype_chat, "Chat", R.color.text_color,this)

.addMenuItem(R.color.quote, R.mipmap.ic_messaging_posttype_quote, "Quote", R.color.text_color,this)

.addMenuItem(R.color.link, R.mipmap.ic_messaging_posttype_link, "Link", R.color.text_color,this)

.addMenuItem(R.color.audio, R.mipmap.ic_messaging_posttype_audio, "Audio", R.color.text_color,this)

.addMenuItem(R.color.text, R.mipmap.ic_messaging_posttype_text, "Text", R.color.text_color,this)

.addMenuItem(R.color.video, R.mipmap.ic_messaging_posttype_video, "Video", R.color.text_color,this)

//you can choose menu layout animation

//设置动画类型

.animationType(SpringFloatingActionMenu.ANIMATION_TYPE_TUMBLR)

//setup reveal color while the menu opening

//设置reveal效果的颜色

.revealColor(R.color.colorPrimary)

//set FAB location, only support bottom center and bottom right

//设置FAB的位置,只支持底部居中和右下角的位置

.gravity(Gravity.RIGHT | Gravity.BOTTOM)

.onMenuActionListner(new OnMenuActionListener() {

@Override

public void onMenuOpen() {

//set FAB icon when the menu opened

//设置FAB的icon当菜单打开的时候

fab.setImageResource(icon_closed);

}

@Override

public void onMenuClose() {

//set back FAB icon when the menu closed

//设置回FAB的图标当菜单关闭的时候

fab.setImageResource(icon_opend);

}

})

.build();

Note you should includetoolbarin your layout xml manually and not usetheme styleor you will find therevealeffect not cover the whole screen.

注意不能使用系统提供的主题的toolbar,不然reveal效果就不会覆盖全屏,应该手动在xml中添加toolbar.

For more usage, you can check out the example.

更多的用法可以参考example.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值