您的位置:首页 > 移动开发 > Android开发

Material Design之FloatingActionBar

2016-05-04 11:48 507 查看
https://developer.android.com/reference/android/support/design/widget/FloatingActionButton.html



默认的背景颜色是theme的
colorAccent
。如果想改变的话,可以通过
setBackgroundTintList(ColorStateList)
app:backgroundTint="@color/colorPrimary"
(
android:backgroundTint API Version 21或以上
)方法实现。

app:fabSize
:FloatingActionButton的大小,有两种赋值分别是 “mini” 和 “normal”,默认是“normal。

app:backgroundTint
:FloatingActionButton的背景颜色,默认的背景颜色是Theme主题中的。

app:rippleColor
- 设置FAB点击时的背景颜色。

app:borderWidth
- 该属性尤为重要,如果不设置0dp,那么在4.1的sdk上FAB会显示为正方形,而且在5.0以后的sdk没有阴影效果。所以设置为borderWidth=”0dp”。

app:elevation
- 默认状态下FAB的阴影大小。

app:pressedTranslationZ
- 点击时候FAB的阴影大小。

app:fabSize
- 设置FAB的大小,该属性有两个值,分别为normal和mini,对应的FAB大小分别为56dp和40dp。

src
- 设置FAB的图标,Google建议符合Design设计的该图标大小为24dp。

CoordinatorLayout
一起使用

app:layout_anchor
- 设置FAB的锚点,即以哪个控件为参照点设置位置。

app:layout_anchorGravity
- 设置FAB相对锚点的位置,值有 bottom、center、right、left、top等。

This method will animate the button hide if the view has already been laid out.
*/
public void hide() {
hide(null);
}" data-snippet-id="ext.71c49f4108fc6ffe901523a1a04b112c" data-snippet-saved="false" data-codota-status="done">[code]    /**
* Hides the button.
* <p>This method will animate the button hide if the view has already been laid out.</p>
*/
public void hide() {
hide(null);
}


隐藏FAB。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Material Design Android