CoordinatorLayout重叠

时间:2015-07-15 21:15:07

标签: android android-fragments android-coordinatorlayout

看看以下布局。你会看到浮动按钮距离底部太远。这是因为显示了工具栏和选项卡,并且ViewPager的高度错误。所以我不知怎的做错了layout_height。但是我该如何解决这个问题呢?

备注:ViewPager是主要内容,它在第二个标签中包含一个带有ListView和Google Map V2的片段。

floating button too low

布局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,可以浏览所有细节条目(因此不需要选项卡)。而且,内部视图似乎太长(与ToolBar的高度相同)。

enter image description here

2 个答案:

答案 0 :(得分:3)

  1. 你应该使用android.support.v7.widget.RecyclerView而不是ListView
  2. 虽然您已经在使用android.support.v7.widget.RecyclerView,但100%确定您已在build.gradle依赖项中声明compile 'com.android.support:recyclerview-v7:23.0.0'。我遇到了viewpager与系统按钮重叠的问题。我通过简单地添加此依赖项来修复它。

答案 1 :(得分:1)

你要做什么&#34;协调&#34;需要直接 CoordinatorLayout的孩子,包括AppBarRecyclerView(API21 +中的ListView或其他视图支持嵌套滚动即可)或{{1等等。

您的FAB偏离屏幕的原因是:

  1. FABViewPager,此行为的实现将在您滚动时偏移视图。
  2. 您将@string/appbar_scrolling_view_behavior放入FAB
  3. 因此,当ViewPager的偏移发生变化时,ViewPager内的任何内容都会一起偏移(额外ViewPager无助于更改偏移量。)

    要解决此问题,请不要在CoordinatorLayout之外使用CoordinatorLayout

    或者:

    1. ViewPagerFAB中移除,以便不会使用ViewPager滚动。
    2. 如果FAB仅适用于您的部分网页,则需要ViewPager
    3. 顺便说一句,有很好的App,Cheesesquare Sample来演示设计库。