1. 程式人生 > >android 官方DrawerLayout的介紹和使用

android 官方DrawerLayout的介紹和使用

drawerLayout是Support Library包中實現了側滑選單效果的控制元件,可以說drawerLayout是因為第三方控制元件如MenuDrawer等的出現之後,google借鑑而出現的產物。drawerLayout分為側邊選單和主內容區兩部分,側邊選單可以根據手勢展開與隱藏(drawerLayout自身特性),主內容區的內容可以隨著選單的點選而變化(這需要使用者自己實現)。

專案已同步至github:https://github.com/nanchen2251/DrawerLayoutDemo drawerLayout的使用很方便,使用drawerLayout的要點如下: 1.drawerLayout其實是一個佈局控制元件,跟LinearLayout等控制元件是一種東西,但是drawerLayout帶有滑動的功能。只要按照drawerLayout的規定佈局方式寫完佈局,就能有側滑的效果。 有兩點要注意:1)主內容區的佈局程式碼要放在側滑選單佈局的前面,這可以幫助DrawerLayout判斷誰是側滑選單,誰是主內容區;2)側滑選單的部分的佈局(這裡是ListView)可以設定layout_gravity屬性,他表示側滑選單是在左邊還是右邊。 先上一個執行圖: 2.drawerLayout左側選單(或者右側)的展開與隱藏可以被DrawerLayout.DrawerListener的實現監聽到,這樣你就可以在選單展開與隱藏發生的時刻做一些希望做的事情。

3.何為側邊選單。側邊選單其實只是一個普通的View,一般裡面裝的是ListView,看起來就像選單,他完全可以是一個button,textView等等。雖然稱為選單,但跟Activity的選單形式是兩碼事,Activity的菜單隻需要在資原始檔中定義好,就能按照固定的形式顯示出來。而drawerLayout的側邊選單顯示成什麼樣完全是取決於你自己,同樣點選事件也完全由你自己去寫。 4.如何點選某個按鈕的時候能夠展開或者隱藏側邊選單。 可以用DrawerLayout.closeDrawer和DrawerLayout.openDrawer來隱藏與展開

  1. drawerLayout與Fragment是什麼關係?我們看到很多使用drawerLayout的程式碼中都同時使用了Fragment,這會造成誤解,以為使用drawerLayout必須用到Fragment,其實這是錯誤的,使用Fragment是因為在側滑選單被點選的時候,主內容區如果內容比較複雜,用Fragment去填充會更容易,如果你的主內容區只是一個簡單的字串,只想在不同選單點選的時候更新一下字串的內容,我覺得沒必要用Fragment。不過Fragment真的是很有用的東西,大多數情況下我們還是優先考慮Fragment和DrawerLayout搭配使用的。 6.說到Fragment,就想到了當我們在使用FrameLayout裝載的時候,總會不斷地來回切換Fragment,一直都是用replace()方法來替換Fragment:然後總感覺切換的時候有些卡頓,這樣就會導致Fragment無限重繪。 每次切換的時候,Fragment都會重新例項化,重新載入一邊資料,這樣非常消耗效能和使用者的資料流量。就想,如何讓多個Fragment彼此切換時不重新例項化?翻看了Android官方Doc,和一些元件的原始碼,發現,replace()這個方法只是在上一個Fragment不再需要時採用的簡便方法。正確的切換方式是add(),切換時hide(),add()另一個Fragment;再次切換時,只需hide()當前,show()另一個。這樣就能做到多個Fragment切換不重新例項化。 下面是一些程式碼:包含了fragment事務處理重新整理介面的問題。
package com.example.nanchen.drawerlayoutdemo;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentTransaction;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.AdapterView;
import android.widget.FrameLayout;
import android.widget.ListView;

import com.example.nanchen.drawerlayoutdemo.adapter.MenuListAdapter;
import com.example.nanchen.drawerlayoutdemo.fragment.HotNewsFragment;
import com.example.nanchen.drawerlayoutdemo.fragment.LateNewsFragment;

import java.util.ArrayList;
import java.util.List;

public class MainActivity extends AppCompatActivity {


    private ListView lv;
    private FrameLayout fl;
    private List<String> list;
    private Fragment fragment_hot_news,fragment_late_news;
    private MenuListAdapter adapter;
    private DrawerLayout dl;
    private FragmentTransaction ft;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        fl = (FrameLayout) findViewById(R.id.main_content_frame);
        lv = (ListView) findViewById(R.id.main_left_drawer_lv);
        dl = (DrawerLayout) findViewById(R.id.main_dl);

        initList();
        adapter = new MenuListAdapter(this,list);
        lv.setAdapter(adapter);



        //建立Fragment管理事務
        ft = getSupportFragmentManager().beginTransaction();
        if (fragment_hot_news == null){
            fragment_hot_news = new HotNewsFragment();
            ft.add(R.id.main_content_frame,fragment_hot_news);
            ft.commit();
        }

        lv.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                dl.closeDrawer(lv);
                FragmentTransaction tran  = getSupportFragmentManager().beginTransaction();
                hideFragment(tran);//隱藏已經add的fragment
                switch (position){
                    case 1:
                        if (fragment_hot_news == null){
                            fragment_hot_news = new HotNewsFragment();
                            tran.add(R.id.main_content_frame,fragment_hot_news);
                        }else{
                            tran.show(fragment_hot_news);
                        }
                        break;
                    case 2:
                        if (fragment_late_news == null){
                            fragment_late_news = new LateNewsFragment();
                            tran.add(R.id.main_content_frame,fragment_late_news);
                        }else{
                            tran.show(fragment_late_news);
                        }
                        break;

                }
                tran.commit();

            }

            /**
             * 隱藏已經初始化的Fragment
             */
            private void hideFragment(FragmentTransaction tran) {
                if (fragment_hot_news != null){
                    tran.hide(fragment_hot_news);
                }
                if (fragment_late_news != null){
                    tran.hide(fragment_late_news);
                }
            }
        });
    }

    private void initList() {
        list = new ArrayList<>();
        list.add("新聞");
        list.add("熱門新聞");
        list.add("最新新聞");
        list.add("推薦新聞");
        list.add("部落格");
        list.add("所有部落格");
        list.add("48小時閱讀排行");
        list.add("10天內推薦排行");
        list.add("收藏");
        list.add("書籤");
        list.add("離線瀏覽");
        list.add("工具");
        list.add("搜尋");
        list.add("設定");
        list.add("退出");
    }
}

1

package com.example.nanchen.drawerlayoutdemo.fragment;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import com.example.nanchen.drawerlayoutdemo.R;

/**
 * Created by nanchen on 2016/6/24.
 */
public class HotNewsFragment extends Fragment {
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment_hot_news,null);
    }
}

2

package com.example.nanchen.drawerlayoutdemo.fragment;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import com.example.nanchen.drawerlayoutdemo.R;

/**
 * Created by nanchen on 2016/6/24.
 */
public class LateNewsFragment extends Fragment {

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return inflater.inflate(R.layout.fragment_late_news,null);
    }
}

下面是一些資原始檔xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/main_dl"
    tools:context="com.example.nanchen.drawerlayoutdemo.MainActivity">


    <FrameLayout
        android:id="@+id/main_content_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </FrameLayout>


    <ListView
        android:id="@+id/main_left_drawer_lv"
        android:layout_width="230dp"
        android:layout_height="match_parent"
        android:layout_gravity="left"
        android:divider="#afafaf"
        android:background="#4b4a4a"
        android:dividerHeight="1dp"
        >

    </ListView>
</android.support.v4.widget.DrawerLayout>

3

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:background="#ddb0b0"
              android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="這是熱門新聞板塊"
        android:gravity="center"/>

</LinearLayout>

4

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="這裡都是最新的新聞"
        android:gravity="center"/>
</LinearLayout>

5

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:background="#ff9a9999"
    android:padding="5dp">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="aa"
        android:textColor="@color/tv_color_white"
        android:id="@+id/menu_item1_tv"
        android:gravity="center"/>

</LinearLayout>

6

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:orientation="horizontal"
              android:padding="5dp">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@mipmap/ic_launcher"
        android:scaleType="fitXY"
        android:id="@+id/menu_item2_iv"
        android:padding="5dp"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:text="aa"
        android:textColor="@color/tv_color_white"
        android:id="@+id/menu_item2_tv"
        android:layout_marginLeft="20dp"
        android:gravity="center_vertical"/>

</LinearLayout>