2016-02-12 101 views
0

我用我的活動的.xml DrawerLayout在下面給出:抽屜式導航欄(SlidingMenu)無法正常工作

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

    <!-- The first child in the layout is for the main Activity UI--> 
    <RelativeLayout 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.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentTop="true" 
      android:background="#09436B" 
      android:elevation="6dp" 
      android:minHeight="?attr/actionBarSize" 
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Light"> 

     </android.support.v7.widget.Toolbar> 

     <android.support.design.widget.TabLayout 
      android:id="@+id/tab_layout" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/toolbar" 
      android:background="#F1F1F1" 
      android:elevation="6dp" 
      android:minHeight="?attr/actionBarSize" 
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" 
      app:tabGravity="fill" 
      app:tabMode="fixed" 
      app:tabSelectedTextColor="@color/tab_selected_text_color" 
      app:tabTextColor="@color/tab_text_color" /> 


     <android.support.v4.view.ViewPager 
      android:id="@+id/viewPager" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_below="@+id/tab_layout"></android.support.v4.view.ViewPager> 

    </RelativeLayout> 

    <!-- Side navigation drawer UI --> 
    <LinearLayout 
     android:id="@+id/layout_navigation_drawer" 
     android:layout_width="200dp" 
     android:layout_height="match_parent" 
     android:orientation="vertical"> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <com.almabay.almachat.circularImageView.CircularImageView 
       android:id="@+id/imgUser" 
       android:layout_width="100dp" 
       android:layout_height="100dp" /> 

      <LinearLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:orientation="vertical"> 

       <TextView 
        android:id="@+id/txtNameUser" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" /> 

       <TextView 
        android:id="@+id/txtEmaiIDUser" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" /> 
      </LinearLayout> 
     </LinearLayout> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="@dimen/margin10"></View> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <TextView 
       android:id="@+id/txtProfile" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="@string/profile" /> 
     </LinearLayout> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <TextView 
       android:id="@+id/txtAccount" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="@string/accounts" /> 
     </LinearLayout> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <TextView 
       android:id="@+id/txtNotification" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="@string/notification" /> 
     </LinearLayout> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <TextView 
       android:id="@+id/txtContacts" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="@string/contacts" /> 
     </LinearLayout> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <TextView 
       android:id="@+id/txtChats" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="@string/chats" /> 
     </LinearLayout> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <TextView 
       android:id="@+id/txtHelp" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="@string/help" /> 
     </LinearLayout> 

     <View 
      android:layout_width="match_parent" 
      android:layout_height="@dimen/margin10" /> 

     <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:orientation="horizontal"> 

      <TextView 
       android:id="@+id/txtLogout" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       android:text="@string/logout" /> 
     </LinearLayout> 
    </LinearLayout> 

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

但我得到正確的導航drawer.No漢堡包圖標顯示

ScreenShot

我要實現以下畫面:

Scree to implement

請指引我在哪裏,我在做什麼犯錯誤知道里面DrawerLayout一個視圖是在屏幕的主要內容等是抽屜式導航items.I已經研究了各種例子,顯示我必須使用導航抽屜的項目列表視圖但我必須解決我的設計,我不能在這裏使用列表視圖。

回答

1

我會建議你使用的導航視圖(把它放在抽屜佈局的底部),然後把你的項目在裏面。

<android.support.design.widget.NavigationView 
    android:id="@+id/nav_view" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_gravity="start"> 

    <include layout="@layout/your navigation view layout"/> 

</android.support.design.widget.NavigationView> 
+0

感謝您的幫助,它爲我工作。 –