0

FABの代わりに、Styledテキストビューを配置して、fabをアンカーに配置するときと同じ結果にします。問題はそれが動作しない、スクロールするとき、テキストビューの半分がまだ見えている、ひどい崩壊ツールバーが隠されている。アプリケーションバーのレイアウトに固定されていると、ツールバーの下にテキストビューがスクロールしない

<?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:fitsSystemWindows="true"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/app_bar_layout" 
     android:layout_width="match_parent" 
     android:layout_height="200dp" 
     android:fitsSystemWindows="true" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

     <!--android:fitsSystemWindows="true"--> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/collapsing_toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:fitsSystemWindows="true" 
      app:contentScrim="?attr/colorPrimary" 
      app:expandedTitleMarginEnd="64dp" 
      app:expandedTitleMarginStart="48dp" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

      <ImageView 
       android:id="@+id/image" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:fitsSystemWindows="true" 
       android:scaleType="centerCrop" 
       app:layout_collapseMode="parallax" /> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       app:layout_collapseMode="pin" 
       app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> 

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

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

    <android.support.v4.widget.NestedScrollView 
     android:id="@+id/scroll" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:clipToPadding="false" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"> 


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


<TextView 
     android:id="@+id/details_price" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginStart="@dimen/layout_padding" 
     android:background="@drawable/drawable_details_price_background" 
     android:padding="@dimen/layout_padding" 
     android:textColor="@color/textColorPrimary" 
     app:layout_anchor="@id/app_bar_layout" 
     app:layout_anchorGravity="bottom|left|end" /> 

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

このような動作をFABの代わりにテキスト表示で実現する方法はありますか?

答えて

-1
<android.support.v4.widget.NestedScrollView 
     android:id="@+id/scroll" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:clipToPadding="false" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

    <TextView 
     android:id="@+id/details_price" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginStart="@dimen/layout_padding" 
     android:background="@drawable/drawable_details_price_background" 
     android:padding="@dimen/layout_padding" 
     android:textColor="@color/textColorPrimary" 
     app:layout_anchor="@id/app_bar_layout" 
     app:layout_anchorGravity="bottom|left|end" /> 

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

この回答はいくつかの説明とともに役立ちます –

関連する問題