2017-10-05 54 views
0

我有一個類似於appbar的whatsapp菜單選項,但列表視圖位於此框架佈局之上。並且我還添加了滾動行爲。它工作得很好,直到我做出改變,現在我不知道如何修復它。我的列表視圖位於應用欄上方

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="com.example.feelingoodlivinbeta.socialdreams_a1.HostMainMenuActivity"> 

    <include layout="@layout/toolbar" /> 

    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/AppTheme.AppBarOverlay"> 
    </android.support.design.widget.AppBarLayout> 
     <FrameLayout 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_marginTop="?attr/actionBarSize"> 

      <io.codetail.widget.RevealFrameLayout 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content"> 

       <include layout="@layout/settings_menu_host_layout" /> 

      </io.codetail.widget.RevealFrameLayout> 
     </FrameLayout> 
    <include layout="@layout/content_host_main_menu" /> 

</android.support.design.widget.CoordinatorLayout> 

enter image description here

+0

儘量隨身攜帶到LinearLayout中(垂直)? **編輯**不要使用layout_weight。 –

回答

0

嘗試添加app:layout_behavior="@string/appbar_scrolling_view_behavior"在 「content_host_main_menu.xml」 父佈局

+0

我發現問題thnx,我不得不使用工具:app:layout_behavior =「@ string/appbar_scrolling_view_behavior」。不知道爲什麼我需要添加工具盈方。謝謝。 – SpriteAndDreams

+0

我在我的工具欄的角落顯示圖像時出現問題,沒有顯示任何內容,顯示黑色工具欄。 – SpriteAndDreams

相關問題