2017-03-31 42 views
-1

我有toolbar問題當我把他推上去時,viewpager也上去了,並且留下空間(見圖)任何解決這個問題的辦法。ViewPager被推上去的時候我按工具欄

這是我activity_main:

<android.support.v4.widget.DrawerLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:app="http://schemas.android.com/apk/res-auto" 
android:id="@+id/drawer" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="true" 
android:background="#fafafb"> 
<android.support.design.widget.CoordinatorLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 
    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 
     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="?attr/colorPrimary" 
      app:layout_scrollFlags="scroll|enterAlways|snap" 
      android:elevation="5dp" 
      app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> 
     <android.support.design.widget.TabLayout 
      android:id="@+id/tabs" 
      android:layout_below="@id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      app:tabMaxWidth="0dp" 
      app:tabGravity="fill" 
      app:tabMode="fixed" 
      app:tabIndicatorHeight="2dp" 
      android:elevation="10dp"/> 
    </android.support.design.widget.AppBarLayout> 
    <android.support.v4.view.ViewPager 
     android:id="@+id/viewpager" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_below="@id/tabs" 
     android:background="#fafafb" 
     android:layout_marginBottom="?attr/actionBarSize" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 
</android.support.design.widget.CoordinatorLayout> 

+0

查看傳呼機內的佈局是什麼?你可以在這裏發帖嗎? –

回答

1

刪除:

app:layout_behavior="@string/appbar_scrolling_view_behavior" 

從你ViewPager

的支持庫包含映射到AppBarLayout.ScrollingViewBehavior特殊字符串資源@string/appbar_scrolling_view_behavior,這是使用在此特定視圖上發生滾動事件時通知AppBarLayout

瞭解更多Clarification

+0

謝謝@ rafsanahmad007,但是當刪除它沒有任何改變,現在沒有推工具欄底部的空間仍然顯示 –

+0

您需要從viewpager刪除底部邊距:'android:layout_marginBottom =「?attr/actionBarSize」''。 – rafsanahmad007

+0

已經刪除它,但在列表視圖中的最後一項不顯示 –