欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android 中FloatingActionButton(懸浮按鈕)實(shí)例詳解

 更新時(shí)間:2017年05月14日 10:47:57   作者:ganchuanpu  
這篇文章主要介紹了Android 中FloatingActionButton(懸浮按鈕)實(shí)例詳解的相關(guān)資料,需要的朋友可以參考下

Android 中FloatingActionButton(懸浮按鈕)實(shí)例詳解

一、介紹

這個(gè)類是繼承自ImageView的,所以對于這個(gè)控件我們可以使用ImageView的所有屬性

二、使用準(zhǔn)備, 在as 的 build.grade文件中寫上

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

三、使用說明

<android.support.design.widget.FloatingActionButton
    android:id="@+id/floatingActionButton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"   
    android:layout_centerInParent="true"
    android:src="@mipmap/ok"
    app:borderWidth="0dp"
    app:backgroundTint="#FF4011"
    app:rippleColor="#33728dff"
    app:elevation="8dp"
    app:pressedTranslationZ="16dp"
    />

可以看到我們使用了app屬性,則需要在根容器中添加這個(gè)屬性。

屬性介紹:

1、app:borderWidth=""------------------邊框?qū)挾龋ǔTO(shè)置為0 ,用于解決Android 5.X設(shè)備上陰影無法正常顯示的問題

2、app:backgroundTint=""---------------按鈕的背景顏色,不設(shè)置,默認(rèn)使用theme中colorAccent的顏色

3、app:rippleColor=""--------------------點(diǎn)擊的邊緣陰影顏色

4、app:elevation=""----------------------邊緣陰影的寬度

5、app:pressedTranslationZ="16dp"-----點(diǎn)擊按鈕時(shí),按鈕邊緣陰影的寬度,通常設(shè)置比elevation的數(shù)值大

效果圖:

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

相關(guān)文章

最新評論