2017-06-28 4 views
0

実際には、その質問に2つの質問があります。スクロールのビューを折りたたむ(AirBnBのように探索する)

1)ユーザーがAirBnBアプリに似たアニメーションでスクロールしたとき(検索フィルタが表示されているとき)、ビューを展開/折りたたみたい。 CollapsingToolbarでCoordinatorLayoutを使用していたものの、そのアニメーションを再現できませんでした。私は彼らがCoordinatorLayout.Behaviorを使ってこの結果を達成していると思いますが、それをうまく使うことはできませんでした。誰かがコーディネーターとコーディネーターの行動を使って滑らかなアニメーションを実現していることを確認できますか?

2)さらに、私のビュー階層はまったく同じではありません。 Expanded searchCollapsed search

私のタブは、折りたたみたい/展開したいレイアウトの上です。 CoordinatorLayout.Behaviorを使用してCoordinatorLayoutでそれを行うことは可能ですか?

詳細については、ユーザーが[実行]ボタンまたは折りたたまれた検索フィールドをクリックしたときに折りたたみ/展開アニメーションを実装することに成功しましたが、それは私が気にしていたものではありません。

EDIT:

私はのLinearLayoutにそれとコーディネータレイアウトを置くことによって崩壊ツールバー上TabLayoutを持っている私の試みに成功しました。

私は

<LinearLayout 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" 
    android:orientation="vertical"> 


    <android.support.design.widget.TabLayout 
     android:id="@+id/tablayout" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     app:tabGravity="fill" 
     app:tabMode="fixed"> 

     <android.support.design.widget.TabItem 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Search" /> 

     <android.support.design.widget.TabItem 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Popular" /> 

     <android.support.design.widget.TabItem 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:text="Favorites" /> 

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

    <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" 
     tools:ignore="RtlHardcoded"> 

     <android.support.design.widget.AppBarLayout 
      android:id="@+id/main.appbar" 
      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/main.collapsing" 
       android:layout_width="match_parent" 
       android:layout_height="wrap_content" 
       app:layout_scrollFlags="scroll|exitUntilCollapsed|snap"> 

       <android.support.v7.widget.Toolbar 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:visibility="invisible" 
        app:contentInsetEnd="0dp" 
        app:contentInsetStart="0dp"> 

        <LinearLayout 
         android:id="@+id/summarized_search_layout" 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:layout_gravity="top|center_horizontal" 
         android:layout_marginEnd="12dp" 
         android:layout_marginStart="12dp" 
         android:background="@drawable/background_blue_light_rounded" 
         android:orientation="horizontal" 
         android:padding="12dp" 
         app:layout_collapseMode="none"> 

         <ImageView 
          android:layout_width="20dp" 
          android:layout_height="20dp" 
          android:layout_gravity="center_vertical" 
          android:src="@drawable/menu_search" /> 

         <TextView 
          android:id="@+id/summarized_search_text" 
          android:layout_width="match_parent" 
          android:layout_height="match_parent" 
          android:layout_gravity="center_vertical" 
          android:layout_marginStart="12dp" /> 

        </LinearLayout> 

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

       <LinearLayout 
        android:id="@+id/extended_search_layout" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:layout_gravity="bottom|center_horizontal" 
        android:layout_marginTop="6dp" 
        android:orientation="vertical" 
        app:layout_collapseMode="parallax" 
        app:layout_collapseParallaxMultiplier="1"> 

        <LinearLayout 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:layout_marginEnd="12dp" 
         android:layout_marginStart="12dp" 
         android:background="@drawable/background_blue_light_rounded" 
         android:orientation="horizontal" 
         android:padding="12dp"> 

         <ImageView 
          android:layout_width="20dp" 
          android:layout_height="20dp" 
          android:layout_gravity="center_vertical" 
          android:src="@drawable/menu_profile" /> 

         <TextView 
          android:layout_width="match_parent" 
          android:layout_height="wrap_content" 
          android:layout_gravity="center_vertical" 
          android:layout_marginStart="12dp" /> 

        </LinearLayout> 

        <LinearLayout 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:layout_marginEnd="12dp" 
         android:layout_marginStart="12dp" 
         android:layout_marginTop="12dp" 
         android:background="@drawable/background_blue_light_rounded" 
         android:orientation="horizontal" 
         android:padding="12dp"> 

         <ImageView 
          android:layout_width="20dp" 
          android:layout_height="20dp" 
          android:layout_gravity="center_vertical" 
          android:src="@drawable/menu_calendar" /> 

         <TextView 
          android:layout_width="match_parent" 
          android:layout_height="wrap_content" 
          android:layout_gravity="center_vertical" 
          android:layout_marginStart="12dp" /> 

        </LinearLayout> 

        <LinearLayout 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:layout_marginEnd="12dp" 
         android:layout_marginStart="12dp" 
         android:layout_marginTop="12dp" 
         android:background="@drawable/background_blue_light_rounded" 
         android:orientation="horizontal" 
         android:padding="12dp"> 

         <ImageView 
          android:layout_width="20dp" 
          android:layout_height="20dp" 
          android:layout_gravity="center_vertical" 
          android:src="@drawable/menu_poi" /> 

         <TextView 
          android:layout_width="match_parent" 
          android:layout_height="wrap_content" 
          android:layout_gravity="center_vertical" 
          android:layout_marginStart="12dp" /> 

        </LinearLayout> 

        <LinearLayout 
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:layout_marginEnd="12dp" 
         android:layout_marginStart="12dp" 
         android:layout_marginTop="12dp" 
         android:background="@drawable/background_blue_light_rounded" 
         android:orientation="horizontal" 
         android:padding="12dp"> 

         <ImageView 
          android:layout_width="20dp" 
          android:layout_height="20dp" 
          android:layout_gravity="center_vertical" 
          android:src="@drawable/menu_poi" /> 

         <TextView 
          android:layout_width="match_parent" 
          android:layout_height="wrap_content" 
          android:layout_gravity="center_vertical" 
          android:layout_marginStart="12dp" /> 

        </LinearLayout> 

        <Button 
         android:id="@+id/validation_button" 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:layout_gravity="end" 
         android:layout_marginEnd="12dp" 
         android:layout_marginTop="12dp" 
         android:text="GO" /> 

       </LinearLayout> 

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

     <android.support.v4.widget.NestedScrollView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:scrollbars="none" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

      <android.support.v7.widget.CardView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_margin="8dp" 
       app:cardElevation="8dp" 
       app:contentPadding="16dp"> 

       <TextView 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:lineSpacingExtra="8dp" 
        android:text="@string/lorem" 
        android:textSize="18sp" /> 
      </android.support.v7.widget.CardView> 


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

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

</LinearLayout> 

を望んでいた振る舞いを持つようにレイアウトを作成しました。しかし、私は私のツールバーには、ちょうど私の残りのビューの一部を持っている目に見えないに設定し、視認性を有する、本当に満足していません折りたたみツールバーが折りたたまれています。

答えて

0

TabLayoutとCoordinatorLayoutの間に非折りたたみフィールド(検索ビュー)を置くことで、同じ結果を得ることができます。私はそれのように同じことを達成しました。だから0に崩壊しようとしているビューは、CollapsingToolbalLayoutの内側にあるはずです。詳細情報が必要な場合は教えてください。

PS:動作全体を正常に複製できましたか?

関連する問題