標籤:utf-8 imageview otto schema 滑動 orm tran 下拉載入 title
Material Design 的一些UI 平常開發還是用的比較多的,以前沒寫,最近總結一下,寫一篇部落格,要求版本在5.0以上。
主要介紹了FloatActionButton,CoordinatorLayout,CollapsingToolbarLayout,AppBarLayout,Toolbar,TabLayout,RecyclerView,CardView
案例中包含了這些的使用;
使用前在build.gradle 添加
compile ‘com.android.support:appcompat-v7:24.2.1‘ compile ‘com.jaeger.statusbaruitl:library:1.1.1‘ compile ‘com.android.support:design:24.2.+‘ compile ‘com.android.support:cardview-v7:24.2.1‘
1:FloatActionButton(懸浮按鈕)
FloatActionButton是ImageButton的繼承類,其用法跟普通的Button基本類似,懸浮的效果,故其使用的重點其實是在布局上。
效果
<android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_margin="15dp" android:layout_gravity="bottom|right" app:fabSize="normal" app:elevation="6dp" android:src="@mipmap/ic_launcher" app:pressedTranslationZ="25dp" />
結合Snackbar使用
屬性介紹:
1、app:borderWidth=""------------------邊框寬度,通常設定為0 ,用於解決Android 5.X裝置上陰影無法正常顯示的問題
2、app:backgroundTint=""---------------按鈕的背景顏色,不設定,預設使用theme中colorAccent的顏色
3、app:rippleColor=""--------------------點擊的邊緣陰影顏色
4、app:elevation=""----------------------邊緣陰影的寬度
5、app:pressedTranslationZ="16dp"-----點擊按鈕時,按鈕邊緣陰影的寬度,通常設定比elevation的數值大
2:CoordinatorLayout+AppBarLayout+CollapsingToolbarLayout(工具列伸縮摺疊)
實現Material Design裡摺疊工具列,它繼承至FrameLayout,給它設定layout_scrollFlags,
它可以控制包含在CollapsingToolbarLayout中的控制項(如:ImageView、Toolbar)在響應layout_behavior事件時作出相應的scrollFlags滾動事件(移除螢幕或固定在螢幕頂端)。
效果
實現的代碼:
<?xml version="1.0" encoding="utf-8"?><android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/main_content" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true"> <android.support.design.widget.AppBarLayout android:id="@+id/appbar" android:layout_width="match_parent" android:layout_height="226dp" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" android:fitsSystemWindows="true"> <android.support.design.widget.CollapsingToolbarLayout android:id="@+id/collapsing_toolbar" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_scrollFlags="scroll|exitUntilCollapsed" android:fitsSystemWindows="true" app:contentScrim="?attr/colorPrimary" app:expandedTitleMarginStart="48dp" app:expandedTitleMarginEnd="64dp"> <ImageView app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed" android:id="@+id/backdrop" android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="centerCrop" android:fitsSystemWindows="true" android:src="@mipmap/zhangwo_hometop1" app:layout_collapseMode="parallax" /> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" app:popupTheme="@style/ThemeOverlay.AppCompat.Light" app:layout_collapseMode="pin" /> </android.support.design.widget.CollapsingToolbarLayout> </android.support.design.widget.AppBarLayout> <android.support.v4.widget.NestedScrollView android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior"> <android.support.v7.widget.RecyclerView android:id="@+id/recyclerView" android:layout_width="match_parent" android:layout_height="match_parent" android:scrollbars="none" /> </android.support.v4.widget.NestedScrollView> <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android:layout_height="wrap_content" android:layout_width="wrap_content" app:layout_anchor="@id/appbar" app:layout_anchorGravity="bottom|right|end" android:src="@mipmap/ic_launcher" android:layout_margin="15dp" android:clickable="true"/></android.support.design.widget.CoordinatorLayout>
3:CoordinatorLayout+AppBarLayout+TabLayout(工具列伸縮摺疊)
CoordinatorLayout是support.design包中的控制項,它可以說是Design庫中最重要的控制項,
CoordinatorLayout 實現了多種Material Design中提到的滾動效果。
:
布局
<?xml version="1.0" encoding="utf-8"?><android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> <!--app:layout_scrollFlags 1、scroll: 所有想滾動出螢幕的view都需要設定這個flag, 沒有設定這個flag的view將被固定在螢幕頂部。 例如,TabLayout 沒有設定這個值,將會停留在螢幕頂部。 2、enterAlways: 設定這個flag時,向下的滾動都會導致該view變為可見,啟用快速“返回模式”。 3、enterAlwaysCollapsed: 當你的視圖已經設定minHeight屬性又使用此標誌時, 你的視圖只能已最小高度進入,只有當滾動視圖到達頂部時才擴大到完整高度。 4、exitUntilCollapsed: 滾動退出螢幕,最後摺疊在頂端。--> <android.support.v7.widget.Toolbar android:id="@+id/appbar_toolbar" app:layout_scrollFlags="scroll|enterAlways" app:popupTheme="@style/Theme.AppCompat.Light" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" /> <android.support.design.widget.TabLayout android:id="@+id/tabs" app:tabGravity="fill" app:tabMode="fixed" android:layout_width="match_parent" android:layout_height="wrap_content" /> </android.support.design.widget.AppBarLayout> <android.support.v4.view.ViewPager android:id="@+id/viewpager" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> <!--三:滑動組件的動畫,滿一屏才有效果。 app:layout_behavior=”@string/appbar_scrolling_view_behavior” --></android.support.design.widget.CoordinatorLayout>
其他相關請看部落格:
Android之ToolBar和自訂ToolBar實現沈浸式狀態列Android之新聞客服端頂部導覽列Tab點擊和左右滑動實現切換介面Android之側滑菜單DrawerLayout的使用Android之SwipeRefreshLayout下拉重新整理組件Android之 RecyclerView,CardView 詳解和相對應的上拉重新整理下拉載入
由於代碼太多,就不一一貼出來了,源碼直接下載即可
源碼下載
Android----Material Design之(FloatActionButton,CoordinatorLayout,CollapsingToolbarLayout,AppBarLayout,TabLayout等)