Je suis en train d'avoir un effondrement de la barre d'outils qui est similaire à l'application Google Maps dans la recherche de la page de destination. C'est, il y a trois "points d'ancrage" ou des postes. En lieu et place de la carte, je vais avoir une image.
- Barre d'outils s'est effondré (le contenu est le mode plein écran)
- Position intermédiaire
- Barre d'outils étendue avec seulement un peu de contenu montrant (persistantes en bas de la feuille)
De préférence, l'application doit composant logiciel enfichable entre ces positions.
À compter de maintenant, j'ai de la mise en page basique.
Deux questions principales sont:
- Jetant à l'intérieur de la NestedScrollView ne fonctionne pas correctement. Il s'arrête/côtelettes, même si c'est à l'aide de
app:layout_behavior="android.support.design.widget.AppBarLayout$ScrollingViewBehavior"
. Je crois que c'est un bugAppBarLayout
- Les points d'ancrage décrit ci-dessus ne sont pas mises en œuvre.
C'est ma mise en page:
Notez que app:layout_behavior="@string/appbar_anchor_behavior">
est juste un non modifié sous-classe de la AppBarLayout.Behavior
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/actions_bar_dark"
android:fitsSystemWindows="true">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:fitsSystemWindows="true"
app:layout_behavior="@string/appbar_anchor_behavior">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_scrollFlags="scroll"
android:fitsSystemWindows="true">
<ImageView
android:id="@+id/item_preview_thumb"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="centerCrop"
android:layout_centerInParent="true"
app:layout_collapseMode="parallax"
/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_collapseMode="pin" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/contentRecyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<include layout="@layout/item_detail_content"/>
</android.support.v4.widget.NestedScrollView>
<android.support.design.widget.FloatingActionButton
android:layout_height="wrap_content"
android:layout_width="wrap_content"
app:layout_anchor="@id/appbar"
app:layout_anchorGravity="bottom|right|end"
android:src="@drawable/ic_download"
android:layout_margin="16dp"
android:clickable="true"/>
Comment puis-je réaliser cela en utilisant une mesure de comportement?