Java完成FTP批量年夜文件上傳下載篇1。本站提示廣大學習愛好者:(Java完成FTP批量年夜文件上傳下載篇1)文章只能為提供參考,不一定能成為您想要的結果。以下是Java完成FTP批量年夜文件上傳下載篇1正文
1、引見
這個類是繼續自ImageView的,所以關於這個控件我們可使用ImageView的一切屬性
android.support.design.widget.FloatingActionButton
2、應用預備, 在as 的 build.grade文件中寫上
compile 'com.android.support:design:22.2.0'
3、應用解釋
xml文件中,留意藍色字體部門
<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屬性,則須要在根容器中添加這個屬性。
xmlns:app="http://schemas.android.com/apk/res-auto"
屬性引見:
1、app:borderWidth=""------------------邊框寬度,平日設置為0 ,用於處理Android 5.X裝備上暗影沒法正常顯示的成績
2、app:backgroundTint=""---------------按鈕的配景色彩,不設置,默許應用theme中colorAccent的色彩
3、app:rippleColor=""--------------------點擊的邊沿暗影色彩
4、app:elevation=""----------------------邊沿暗影的寬度
5、app:pressedTranslationZ="16dp"-----點擊按鈕時,按鈕邊沿暗影的寬度,平日設置比elevation的數值年夜
別的我們願望點擊按鈕一個色彩,正常狀況一個色彩 以進步用戶體驗,那末就是drawable文件夾中創立文件 floatbutton.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@color/colorNormal"></item> <item android:state_pressed="true" android:drawable="@color/colorPressed"></item> </selector>
然後我們設置FloatActionButton的backgroud為這個drawable文件便可,同時app:backgroundTint=""屬性也能夠不再設置
<android.support.design.widget.FloatingActionButton android:id="@+id/floatingActionButton" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:background="@drawable/floatbutton" android:src="@mipmap/ok" app:borderWidth="0dp" app:rippleColor="#33728dff" app:elevation="8dp" app:pressedTranslationZ="16dp" />
後果圖: