2016-09-16 83 views
1

我在CollapsingToolbarLayout中使用ViewPager。
問題是,當我滑動未完全展開的ViewPager時,工具欄標題會移動到應完全展開狀態的位置(默認爲左下角)。 然後崩潰標題完全消失。CollapsingToolbarLayout和ViewPager

這裏是我的佈局看起來像:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 
    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:layout_above="@+id/button_remember_word"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/collapsing_toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      app:contentScrim="?attr/colorPrimary" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

      <android.support.v4.view.ViewPager 
       android:id="@+id/pager_gallery" 
       android:layout_width="match_parent" 
       android:layout_height="240dp"/> 


      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       app:layout_collapseMode="pin"/> 
     </android.support.design.widget.CollapsingToolbarLayout> 

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

    <android.support.v4.widget.NestedScrollView 
     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" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

     <TextView 
      android:id="@+id/text_word_description" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="@string/tmp_lorem" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior"/> 

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

這裏是我如何設置工具欄標題:

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar); 
    setSupportActionBar(toolbar); 
    mToolbar.setTitle("A title"); 
    // also tried this way 
    CollapsingToolbarLayout collapsingToolbarLayout = 
     (CollapsingToolbarLayout) findViewById(R.id.collapsing_toolbar); 
     collapsingToolbarLayout.setTitle("Another title"); 

添加了幾個截圖: 1.正常擴張狀態 enter image description here

  1. Normal collapse state
    enter image description here

  2. 如果在這種狀態下我刷一下ViewPager
    enter image description here

  3. 標題消失
    enter image description here

enter image description here

建議的任何PICE表示讚賞

+0

你能顯示的工具欄狀態的照片嗎? –

+0

添加屏幕截圖 –

回答

1

使用app:layout_collapseMode="parallax"您viewPager

<android.support.v4.view.ViewPager 
       android:id="@+id/pager_gallery" 
       android:layout_width="match_parent" 
       app:layout_collapseMode="parallax" 
       android:layout_height="240dp"/> 
+0

不幸的是它沒有幫助 –

+0

https://code.tutsplus.com/articles/scrolling-techniques-for-material-design--cms-24435 您是否訪問過此鏈接? 它可能會幫助你 – AmirhosseinAbd93

相關問題