如圖上所顯示的,導覽列有著許多的項目,如果每個項目都要重複寫一次Navigation View的程式碼,重新撰寫Item被點擊的事件,不覺是一件很浪費時間的事嗎?
今天來記錄一個Navigation View的父類別,有需要的使用Navigation View的Activity,繼承這個類別即可。
按慣例,拿上一個專案來進行修改。
先創建一個navigation_drawer.xml
側選單中需要有一些項目,所以我們在menu底下創建一個menu_navigation.xml
其中navItemOne就使用我們之前的ViewPager,第二個About-呈現此APP的資訊,第三個則為出現AlertDialog詢問是否確定登出
為About,創建一個about.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout 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"> | |
<include | |
layout="@layout/toolbar" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
app:layout_scrollFlags="scroll|enterAlways|snap" /> | |
<TextView | |
android:id="@+id/textView" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="@string/version" | |
android:textColor="@color/black" | |
android:textSize="18sp" | |
android:textStyle="bold" | |
android:layout_marginTop="5dp" | |
android:layout_marginLeft="5dp"/> | |
<TextView | |
android:id="@+id/tvVersion" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:textColor="@color/black" | |
android:textSize="18sp" | |
android:layout_marginLeft="5dp"/> | |
<TextView | |
android:id="@+id/textView2" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="@string/author" | |
android:textColor="@color/black" | |
android:textSize="18sp" | |
android:textStyle="bold" | |
android:layout_marginTop="5dp" | |
android:layout_marginLeft="5dp"/> | |
<TextView | |
android:id="@+id/tvAuthor" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="@string/author_name" | |
android:textColor="@color/black" | |
android:textSize="18sp" | |
android:layout_marginLeft="5dp"/> | |
<TextView | |
android:id="@+id/textView3" | |
android:layout_width="wrap_content" | |
android:layout_height="wrap_content" | |
android:text="@string/email" | |
android:textColor="@color/black" | |
android:textSize="18sp" | |
android:textStyle="bold" | |
android:layout_marginTop="5dp" | |
android:layout_marginLeft="5dp"/> | |
<TextView | |
android:id="@+id/tvEmail" | |
android:layout_width="match_parent" | |
android:layout_height="wrap_content" | |
android:text="@string/author_email" | |
android:textColor="@color/black" | |
android:textSize="18sp" | |
android:layout_marginLeft="5dp"/> | |
</LinearLayout> |
要呈現的畫面準備好了,再來就是我們的重點,創建一個父類別,Navigation_BaseActivity.java 在這個BaceActivity中撰寫將側邊欄放入,並針對NavigationItemClick事件進行撰寫
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.solinari.navigationviewsample; | |
import android.support.design.widget.TabLayout; | |
import android.support.v4.app.Fragment; | |
import android.support.v4.view.ViewPager; | |
import android.os.Bundle; | |
import android.view.Menu; | |
import java.util.ArrayList; | |
import java.util.List; | |
public class MainActivity extends Navigation_BaseActivity { | |
private ViewPager myViewPager; | |
private TabLayout tabLayout; | |
private int[] IconResID = {R.drawable.selector_one,R.drawable.selector_two,R.drawable.selector_three}; | |
private int[] TollBarTitle = {R.string.friend,R.string.setting,R.string.contact}; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
myViewPager = (ViewPager) findViewById(R.id.myViewPager); | |
tabLayout = (TabLayout) findViewById(R.id.TabLayout); | |
toolbar.setTitle(TollBarTitle[0]);//設置ToolBar Title | |
setUpToolBar();//使用父類別的setUpToolBar(),設置ToolBar | |
CurrentMenuItem = 0;//目前Navigation項目位置 | |
NV.getMenu().getItem(CurrentMenuItem).setChecked(true);//設置Navigation目前項目被選取狀態 | |
setViewPager(); | |
tabLayout.setupWithViewPager(myViewPager); | |
setTabLayoutIcon(); | |
} | |
public void setTabLayoutIcon(){ | |
for(int i =0; i < 3;i++){ | |
tabLayout.getTabAt(i).setIcon(IconResID[i]); | |
} | |
tabLayout.addOnTabSelectedListener(new TabLayout.OnTabSelectedListener() { | |
@Override | |
public void onTabSelected(TabLayout.Tab tab) { | |
toolbar.getMenu().clear(); | |
switch(tab.getPosition()){ | |
case 0: | |
toolbar.inflateMenu(R.menu.menu_one); | |
toolbar.setTitle(TollBarTitle[0]); | |
break; | |
case 1: | |
toolbar.inflateMenu(R.menu.menu_two); | |
toolbar.setTitle(TollBarTitle[1]); | |
break; | |
case 2: | |
toolbar.inflateMenu(R.menu.menu_three); | |
toolbar.setTitle(TollBarTitle[2]); | |
break; | |
} | |
} | |
@Override | |
public void onTabUnselected(TabLayout.Tab tab) {} | |
@Override | |
public void onTabReselected(TabLayout.Tab tab) {} | |
}); | |
} | |
private void setViewPager(){ | |
FragmentList_One myFragment1 = new FragmentList_One(); | |
FragmentList_Two myFragment2 = new FragmentList_Two(); | |
FragmentList_Three myFragment3 = new FragmentList_Three(); | |
List<Fragment> fragmentList = new ArrayList<Fragment>(); | |
fragmentList.add(myFragment1); | |
fragmentList.add(myFragment2); | |
fragmentList.add(myFragment3); | |
ViewPagerFragmentAdapter myFragmentAdapter = new ViewPagerFragmentAdapter(getSupportFragmentManager(), fragmentList); | |
myViewPager.setAdapter(myFragmentAdapter); | |
} | |
@Override | |
public boolean onCreateOptionsMenu(Menu menu) { | |
getMenuInflater().inflate(R.menu.menu_one, menu); | |
return true; | |
} | |
} |
創建About.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.solinari.navigationviewsample; | |
import android.content.pm.PackageInfo; | |
import android.content.pm.PackageManager; | |
import android.os.Bundle; | |
import android.widget.TextView; | |
/** | |
* Created by Solinari on 2017/02/15. | |
*/ | |
public class About extends Navigation_BaseActivity { | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.about); | |
toolbar.setTitle(R.string.about);//設置ToolBar Title | |
setUpToolBar();//使用父類別的setUpToolBar(),設置ToolBar | |
CurrentMenuItem = 1;//目前Navigation項目位置 | |
NV.getMenu().getItem(CurrentMenuItem).setChecked(true);//設置Navigation目前項目被選取狀態 | |
TextView tvVersion = (TextView) findViewById(R.id.tvVersion); | |
try {//取得APP目前的versionName | |
PackageInfo packageInfo = getPackageManager().getPackageInfo(getPackageName(), 0); | |
tvVersion.setText( packageInfo.versionName); | |
} catch (PackageManager.NameNotFoundException e) { | |
e.printStackTrace(); | |
} | |
} | |
} |
設計一個navigation_drawer_header.xml
參考文獻:android-navigation-drawer-with-multiple
Android帶側滑菜單和ToolBar的BaseActivity
完整專案:Solinari GitHub