【问题标题】:How to create a draggable TabLayout?如何创建可拖动的 TabLayout?
【发布时间】:2018-06-09 11:57:12
【问题描述】:

我的布局包含一个 TabLayout 和一个 ViewPager,这个视图位于底部。 我希望 TabLayout 可以拖动到页面顶部。就像下图一样

视图目前是用ConstraintLayout做的,怎么做?

【问题讨论】:

    标签: android xml android-layout android-viewpager android-tablayout


    【解决方案1】:

    您需要使用CoordinatorLayoutCollapsingToolbarLayout 来实现此输出。

    参考采取的xml代码:

    <?xml version="1.0" encoding="utf-8"?><!--
      ~ Copyright (C) 2015 The Android Open Source Project
      ~
      ~ Licensed under the Apache License, Version 2.0 (the "License");
      ~ you may not use this file except in compliance with the License.
      ~ You may obtain a copy of the License at
      ~
      ~      http://www.apache.org/licenses/LICENSE-2.0
      ~
      ~ Unless required by applicable law or agreed to in writing, software
      ~ distributed under the License is distributed on an "AS IS" BASIS,
      ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      ~ See the License for the specific language governing permissions and
      ~ limitations under the License.
      -->
    
    <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.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            android:layout_width="match_parent"
            android:layout_height="256dp"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
    
            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/collapsing_toolbar"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">
    
                <android.support.design.widget.TabLayout
                    android:id="@+id/tabs"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:layout_gravity="bottom"
                    app:tabMode="scrollable"
                    app:tabContentStart="72dp" />
    
                <android.support.v7.widget.Toolbar
                    android:id="@+id/toolbar"
                    android:layout_width="match_parent"
                    android:layout_height="?attr/actionBarSize"
                    android:background="?attr/colorPrimary"
                    app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
                    app:layout_collapseMode="parallax" />
    
            </android.support.design.widget.CollapsingToolbarLayout>
    
        </android.support.design.widget.AppBarLayout>
    
        <android.support.v4.view.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />
    
        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="end|bottom"
            android:layout_margin="8dp"
            android:src="@drawable/ic_done"
            app:layout_anchor="@id/tabs"
            app:layout_anchorGravity="center|left|start"
            app:fabSize="mini"
            app:layout_behavior="com.support.android.designlibdemo.ScrollAwareFABBehavior"
            app:borderWidth="0dp" />
    
    </android.support.design.widget.CoordinatorLayout>
    

    请参阅此完整主题以获取更多想法https://gist.github.com/iPaulPro/1468510f046cb10c51ea

    【讨论】:

    • @Aslam 你检查了完整的线程吗?我这里分享的示例代码供大家参考!
    • 其实这是 OP 完成任务的一个很好的参考,在CollapsingToolbarLayout 里面,OP 可以添加他想要的视图,在NestedScrollView 的底部可以用NestedScrollView 拖动。请讲道理??
    猜你喜欢
    • 1970-01-01
    • 2017-05-22
    • 1970-01-01
    • 2013-09-18
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2011-02-02
    • 1970-01-01
    相关资源
    最近更新 更多