Android ActionBarDrawerToggle、DrawerLayout、ActionBar 結合

來源:互聯網
上載者:User

標籤:

ActionBarDrawerToggle是一個開關。用於開啟/關閉DrawerLayout抽屜


ActionBarDrawerToggle 提供了一個方便的方式來配合DrawerLayout和ActionBar。以實現推薦的抽屜功能。

即點擊ActionBar的homebutton,就可以彈出DrawerLayout抽屜。


在Activity中的兩個回呼函數中使用它:

   onConfigurationChanged
   onOptionsItemSelected

調用ActionBarDrawerToggle.syncState() 在Activity的onPostCreate()中。指示,ActionBarDrawerToggle與DrawerLayout的狀態同步,並將ActionBarDrawerToggle中的drawer表徵圖。設定為ActionBar的Home-Button的icon


關於DrawerLayout就不多說了,請移步這裡 http://blog.csdn.net/jjwwmlp456/article/details/38682637

在這個官方的範例中,已經實現了本文所要講述的內容。


總體的效果呢,須要支援ActionBar。support-v7包的 compat中有 ActionBarActivity可繼承, 3.0以後也能夠用主題的方式直接使用。不多說了


幾個基本的函數調用

ActionBarDrawerToggle mDrawerToggle;DrawerLayout mDrawerLayout;void init() {mDrawerLayout.setDrawerListener(new MyDrawerListener());//設定drawer的開關監聽mDrawerToggle = new ActionBarDrawerToggle(activity, mDrawerLayout, R.drawable.ic_drawer, R.string.drawer_open, R.string.drawer_close);}/** activity建立完畢後 */@Overrideprotected void onPostCreate(Bundle savedInstanceState) {super.onPostCreate(savedInstanceState);mDrawerToggle.syncState();//該方法會自己主動和actionBar關聯, 將開關的圖片顯示在了action上。假設不設定,也能夠有抽屜的效果,只是是預設的表徵圖}/** 菜單鍵點擊的事件處理 */@Overridepublic boolean onOptionsItemSelected(MenuItem item) {return mDrawerToggle.onOptionsItemSelected(item) || super.onOptionsItemSelected(item);}/** 裝置配置改變時 */@Overridepublic void onConfigurationChanged(Configuration newConfig) {super.onConfigurationChanged(newConfig);mDrawerToggle.onConfigurationChanged(newConfig);}/** drawer的監聽 */private class MyDrawerListener implements DrawerLayout.DrawerListener {@Overridepublic void onDrawerOpened(View drawerView) {// 開啟drawermDrawerToggle.onDrawerOpened(drawerView);//開關狀態改為opened}@Overridepublic void onDrawerClosed(View drawerView) {// 關閉drawermDrawerToggle.onDrawerClosed(drawerView);//開關狀態改為closed}@Overridepublic void onDrawerSlide(View drawerView, float slideOffset) {// drawer滑動的回調mDrawerToggle.onDrawerSlide(drawerView, slideOffset);}@Overridepublic void onDrawerStateChanged(int newState) {// drawer狀態改變的回調mDrawerToggle.onDrawerStateChanged(newState);}}


Android ActionBarDrawerToggle、DrawerLayout、ActionBar 結合

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.