Android5.0新控件實例詳解
谷歌在推出Android5.0的同時推出了一些新控件,Android5.0中最常用的新控件有下面5種。
1. CardView(卡片視圖)
CardView顧名思義是卡片視圖,它繼承FrameLayout。它是一個帶圓角的背景和陰影FrameLayout。CardView被包裝為一種布局,并且經(jīng)常在ListView和RecyclerView的Item布局中,作為容器使用。
CardView的使用非常簡單:
<android.support.v7.widget.CardView android:layout_width="match_parent" android:layout_height="60dp"> <Button android:id="@+id/ripple_button" android:layout_width="match_parent" android:layout_height="50dp" android:layout_gravity="center" android:layout_margin="5dp" android:background="@drawable/ripple" android:gravity="center" android:text="我在一個CardView里面" /> </android.support.v7.widget.CardView>
2. Patelle(調(diào)色板)
Patelle是一個輔助類,它的作用是從圖片中獲取突出的顏色。
它可以提取下面幾種特性的突出顏色:
- Vibrant(充滿活力的)
- Vibrant Dark(充滿活力,黑暗的)
- Vibrant Light(充滿活力的,明亮的)
- Muted(柔和的)
- Muted Dark(柔和的,黑暗的)
- Muted Light(柔和的,明亮的)
Patelle的使用也非常簡單:
// 獲取應(yīng)用程序圖標(biāo)的Bitmap bitmap= BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher); // 通過bitmap生成調(diào)色板palette Palette palette=Palette.from(bitmap).generate(); // 獲取palette充滿活力色顏色 int vibrantColor=palette.getVibrantColor(Color.WHITE);
3. Toolbar(工具欄)
Toolbar顧名思義是工具欄,作為ActionBar的替代品出現(xiàn),谷歌推薦使用Toolbar替代ActionBar。
Toolbar可以放置在任何地方,不像ActionBar一樣只能放置在固定的位置。
Toolbar支持比ActionBar更集中的特征。
Toolbar可能包含以下可選元素的組合:
- 導(dǎo)航按鈕
- 品牌的Logo圖像
- 標(biāo)題和子標(biāo)題
- 一個或多個自定義視圖
this.toolbar = (Toolbar) findViewById(R.id.toolbar); this.recyclerview = (RecyclerView) findViewById(R.id.recycler_view); this.ripplebutton = (Button) findViewById(R.id.ripple_button); this.button = (Button) findViewById(R.id.button); // 設(shè)置Logo toolbar.setLogo(R.mipmap.ic_launcher); // 設(shè)置標(biāo)題 toolbar.setTitle("Android5.0"); // 設(shè)置子標(biāo)題 toolbar.setSubtitle("新控件"); //設(shè)置ActionBar,之后就可以獲取ActionBar并進(jìn)行操作,操作的結(jié)果就會反應(yīng)在toolbar上面 setActionBar(toolbar); //設(shè)置了返回箭頭,,相當(dāng)于設(shè)置了toolbar的導(dǎo)航按鈕 getActionBar().setDisplayHomeAsUpEnabled(true);
4. RippleDrawable(波紋圖)
RippleDrawable顧名思義是波紋圖,只能在Android5.0以上使用,目前還沒有提供RippleDrawable向下兼容的支持包。
RippleDrawable可顯示一個漣漪效應(yīng)響應(yīng)狀態(tài)變化 。
定義一個UI的背景圖片為RippleDrawable
android:background="@drawable/ripple"
在drawable文件夾下面定義一個RippleDrawable的xml文件
<?xml version="1.0" encoding="utf-8"?> <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="#0000FF"> <item> <shape android:shape="rectangle"> <solid android:color="#FFFFFF" /> <corners android:radius="4dp" /> </shape> </item> </ripple>
android:color :表示波紋的顏色
<item>:表示波紋圖下面的條目
來看一下點擊按鈕的波紋效果
5. RecyclerView(循環(huán)視圖)
RecyclerView是ListView的替代品,谷歌推薦使用RecyclerView替代ListView。
RecyclerView提供比ListView更加靈活的使用,并且性能比ListView更優(yōu)。
RecyclerView可以設(shè)置線性,網(wǎng)格,瀑布流式三種布局管理器。
- LinearLayoutManager(線性布局管理器)
- GridLayoutManager(網(wǎng)格布局管理器)
- StaggeredGridLayoutManager(瀑布流式布局管理器)
注意:RecyclerView,Patelle,CardView是在單獨的支持包里面,不在appcompat-v7及其依賴子包中
要使用它們,必須導(dǎo)入它們的依賴包
compile 'com.android.support:recyclerview-v7:23.1.1' compile 'com.android.support:palette-v7:23.1.1' compile 'com.android.support:cardview-v7:23.1.1'
相關(guān)文章
Android實現(xiàn)多參數(shù)文件和數(shù)據(jù)上傳
這篇文章主要為大家詳細(xì)介紹了Android實現(xiàn)多參數(shù)文件和數(shù)據(jù)上傳,具有一定的參考價值,感興趣的小伙伴們可以參考一下2018-12-12分析Android App中內(nèi)置換膚功能的實現(xiàn)方式
這篇文章主要介紹了Android App中內(nèi)置換膚功能的實現(xiàn)方式,文中舉了一個類似QQ空間中換膚方式的例子作為說明,需要的朋友可以參考下2016-02-02Android實現(xiàn)個人資料頁面頭像背景模糊顯示包(狀態(tài)欄)
這篇文章主要介紹了Android實現(xiàn)個人資料頁面頭像背景模糊顯示包括狀態(tài)欄,非常不錯,具有參考借鑒價值,需要的朋友可以參考下2017-03-03Android編程入門之HelloWorld項目目錄結(jié)構(gòu)分析
這篇文章主要介紹了Android編程入門之HelloWorld項目目錄結(jié)構(gòu)分析,較為詳細(xì)的分析了Android項目的目錄結(jié)構(gòu)與具體作用,需要的朋友可以參考下2015-12-12Android利用MediaRecorder實現(xiàn)錄音功能
這篇文章主要為大家詳細(xì)介紹了Android利用MediaRecorder實現(xiàn)錄音功能,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2022-03-03kotlin中數(shù)據(jù)類重寫setter getter的正確方法
這篇文章主要給大家介紹了關(guān)于kotlin中數(shù)據(jù)類重寫setter getter的正確方法,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用kotlin具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2018-06-06