修复了ViewPager内容布局中CoordinatorLayout下的视图

时间:2016-05-27 22:36:57

标签: android android-viewpager material-design android-coordinatorlayout android-appbarlayout

我的应用有Activity TabLayout和3 Fragments。在Activity's布局中,CoordinatorLayout位于ViewPager。我还需要为 工具栏 制作动画。 现在在Fragments布局中,我需要在底部放置一个固定的TextView。 以下是活动和片段的XML

  

我面临的问题是这在片段中修复了TextView   布局在底部导航栏下方并且也在滚动,   我不想要的。

如何实现这一目标?

activity.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"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/clMain"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <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|snap"
            app:popupTheme="@style/AppTheme.PopupOverlay">

            <TextView
                android:id="@+id/toolbar_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/app_name"
                android:textColor="#FFFFFF"
                android:textSize="22sp"
                android:textStyle="bold" />
        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/tab_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/toolbar"
            android:background="?attr/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" />

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

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

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

fragment.xml之

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:background="@color/colorWhite"
    android:orientation="vertical">

    <android.support.v4.widget.NestedScrollView
        android:id="@+id/rlParent"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="fill_vertical"
        android:layout_weight="1"
        android:fitsSystemWindows="true"
        android:orientation="vertical">


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

    <TextView
        android:id="@+id/tvConfirmOrder"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorDarkGreen"
        android:gravity="center"
        android:padding="10dp"
        android:text="@string/confirm_order"
        android:textColor="@color/colorWhite"
        android:textSize="18sp"
        android:textStyle="bold"></TextView>
</LinearLayout> 

2 个答案:

答案 0 :(得分:17)

如果您希望每个片段的底部固定TextView,可以通过将TextView转移到activity.xml并向其添加自定义行为来解决此问题。

所以,首先,创建一个代表自定义行为的类:

public class FixedBottomViewBehavior extends CoordinatorLayout.Behavior<View> {

    public FixedBottomViewBehavior() {
    }

    public FixedBottomViewBehavior(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    @Override
    public boolean layoutDependsOn(CoordinatorLayout parent, View child, View dependency) {
        //making our bottom view depends on ViewPager (or whatever that have appbar_scrolling_view_behavior behavior)
        return dependency instanceof ViewPager;
    }

    @Override
    public boolean onDependentViewChanged(CoordinatorLayout parent, View child, View dependency) {
        if (ViewCompat.isLaidOut(parent)) {
            //attach our bottom view to the bottom of CoordinatorLayout
            child.setY(parent.getBottom() - child.getHeight());

            //set bottom padding to the dependency view to prevent bottom view from covering it
            dependency.setPadding(dependency.getPaddingLeft(), dependency.getPaddingTop(),
                    dependency.getPaddingRight(), child.getHeight());
        }
        return false;
    }
} 

这里没有任何魔力,我们只是根据appbar_scrolling_view_behavior(在我们的例子中是ViewPager)的某些视图使我们的底部视图依赖于它,然后将其附加到CoordinatorLayout的底部并将一些填充设置为依赖。

其次,通过在activity.xml添加TextView来更改<?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:id="@+id/clMain" android:layout_width="match_parent" android:layout_height="match_parent" android:fitsSystemWindows="true"> <android.support.design.widget.AppBarLayout android:id="@+id/appbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/AppTheme.AppBarOverlay"> <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|snap" app:popupTheme="@style/AppTheme.PopupOverlay"> <TextView android:id="@+id/toolbar_title" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/app_name" android:textColor="#FFFFFF" android:textSize="22sp" android:textStyle="bold" /> </android.support.v7.widget.Toolbar> <android.support.design.widget.TabLayout android:id="@+id/tab_layout" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="@+id/toolbar" android:background="?attr/colorPrimary" android:minHeight="?attr/actionBarSize" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" /> </android.support.design.widget.AppBarLayout> <android.support.v4.view.ViewPager android:id="@+id/pager" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> <TextView android:id="@+id/tvConfirmOrder" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:background="@color/colorDarkGreen" android:gravity="center" android:padding="10dp" android:text="@string/confirm_order" android:textColor="@color/colorWhite" android:textSize="18sp" android:textStyle="bold" app:layout_behavior="your.package.name.FixedBottomViewBehavior" /> </android.support.design.widget.CoordinatorLayout>

TextView

确保您已从fragment.xml移除了your.package.name.FixedBottomViewBehavior。不要忘记将OnClick更改为您的包裹名称。

Voila!这应该像一个带有适当的工具栏动画和底部固定视图的魅力。

此外: 如果您不知道如何将Activity事件传递给您的片段,您可以在{{{{{{ 1}}:

    public interface OnConfirmOrderClickListener {
        void onConfirmOrderClick(View v);
    }

    public Fragment getActiveFragment() {
        String name = makeFragmentName(pager.getId(), pager.getCurrentItem());
        return getSupportFragmentManager().findFragmentByTag(name);
    }

    public String makeFragmentName(int viewId, int index) {
        return "android:switcher:" + viewId + ":" + index;
    } 

    tvConfirmOrder.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Fragment current = getActiveFragment();
            if (current instanceof OnConfirmOrderClickListener)
                ((OnConfirmOrderClickListener) current).onConfirmOrderClick(v);
        }
    });

别忘了制作片段implements OnConfirmOrderClickListener。希望有所帮助!

enter image description here

答案 1 :(得分:1)

对于希望按钮只显示在一个片段中的用户,可以使用onPageChangeListener的{​​{1}}来使按钮与ViewPager一起滚动

ViewPager