10

次のレイアウトを見てください。フローティング ボタンが下に離れすぎていることがわかります。これは、ツールバーとタブが表示され、ViewPager の高さが間違っているためです。だからどういうわけか私はlayout_heightで何か間違っています。しかし、どうすればそれを修正できますか?

備考: ViewPager がメイン コンテンツであり、2 番目のタブに ListView と Google マップ V2 を含むフラグメントが含まれています。

フローティングボタンが低すぎる

それがレイアウト XML です。

<?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.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" />

        <android.support.design.widget.TabLayout
            android:id="@+id/sliding_tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>

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

    <android.support.v4.view.ViewPager
            android:id="@+id/pager_list_views"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"
            android:layout_width="match_parent"
            android:layout_height="fill_parent">
    </android.support.v4.view.ViewPager>

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

最初のタブ (リスト) のフラグメントのレイアウトは次のとおりです。

<?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">

    <ListView
              android:id="@+id/preview_list"
              app:layout_behavior="@string/appbar_scrolling_view_behavior"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:choiceMode="singleChoice"
              android:orientation="vertical" />

    <android.support.design.widget.FloatingActionButton
            android:id="@+id/action_add"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="end|bottom"
            android:layout_margin="16dp"
            android:src="@mipmap/ic_add_white_48dp" />

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

念のため; FAB の問題ではありません。この写真を見てください。似たようなレイアウトです。ToolBar と、すべての詳細エントリをスワイプする ViewPager を備えた CoordinatorLayout (したがって、タブは必要ありません)。また、内部ビューが長すぎるようです (ツールバーと同じ高さ)。

ここに画像の説明を入力

4

2 に答える 2

1

「座標」にする必要があるものは、 、(API21+ の ListView または他のビュー サポートのネストされたスクロールは OK)、またはなどを含む、の直接の子である必要があります。CoordinatorLayoutAppBarRecyclerViewFAB

FABあなたが画面からずれている理由は次のとおりです。

  1. ViewPagerがある@string/appbar_scrolling_view_behavior場合、この動作を実装すると、スクロール時にビューがオフセットされます。
  2. あなたはFAB中に入れますViewPager

したがって、 のオフセットがViewPager変更されると、内部のすべてViewPagerが一緒にオフセットされます (extraCoordinatorLayoutはオフセットを変更するのに役立ちません)。

CoordinatorLayoutこれを修正するには、 outsideを使用しないでくださいViewPager

または:

  1. でスクロールしないように をFAB出してください。ViewPagerViewPager
  2. FAB がページの一部でのみ機能する場合は、hide()必要に応じて使用してください。

ところで、デザイン ライブラリのデモ用に非常に優れたアプリ、Cheesesquare Sampleがあります。

于 2016-06-05T10:04:04.390 に答える