Android-自適用高度的ViewPager

需求

在項(xiàng)目中,我們常常遇到需要?jiǎng)討B(tài)調(diào)整 ViewPager 的高度,以適應(yīng)其內(nèi)容大小的需求拴竹。默認(rèn)情況下唐础,ViewPager 的高度是固定的箱歧,無法根據(jù)每個(gè)頁面的內(nèi)容高度進(jìn)行調(diào)整矾飞。這會(huì)導(dǎo)致在內(nèi)容高度不一致時(shí),出現(xiàn)不必要的空白區(qū)域或者內(nèi)容被裁剪的情況呀邢。為了解決這個(gè)問題洒沦,我們設(shè)計(jì)了一個(gè) AutoHeightViewPager,能夠根據(jù)當(dāng)前顯示頁面的內(nèi)容高度動(dòng)態(tài)調(diào)整自身的高度价淌,保證內(nèi)容完整且沒有多余的空白申眼。

效果

去哪兒效果:


640.gif

仿的效果:


640 (1).gif

實(shí)現(xiàn)思路

1. 動(dòng)態(tài)高度調(diào)整

首先,我們需要一個(gè)自定義的 ViewPager 類 AutoHeightViewPager蝉衣,這個(gè)類可以根據(jù)當(dāng)前頁面的內(nèi)容高度來動(dòng)態(tài)調(diào)整自身的高度括尸。通過重寫 onMeasure 方法,可以在滑動(dòng)過程中動(dòng)態(tài)計(jì)算頁面的高度并調(diào)整布局买乃。

2. 監(jiān)聽頁面滑動(dòng)事件

為了平滑過渡姻氨,我們需要監(jiān)聽頁面的滑動(dòng)過程,并計(jì)算滑動(dòng)比例剪验,將當(dāng)前頁面的高度與下一個(gè)頁面的高度按比例過渡肴焊,實(shí)現(xiàn)平滑過渡效果。

3. 自定義 Adapter

自定義的 PagerAdapter 必須實(shí)現(xiàn)一個(gè)接口 AutoHeightPager功戚,用于獲取指定位置頁面的 View娶眷,這樣我們可以測量頁面內(nèi)容的高度。

實(shí)現(xiàn)代碼

1. AutoHeightViewPager

package com.yxlh.androidxy.demo.ui.viewpager.vp

import android.content.Context
import android.util.AttributeSet
import android.view.View
import androidx.viewpager.widget.PagerAdapter
import androidx.viewpager.widget.ViewPager

interface AutoHeightPager {
    fun getView(position: Int): View?
}

class AutoHeightViewPager @JvmOverloads constructor(
    context: Context,
    attrs: AttributeSet? = null
) : ViewPager(context, attrs) {

    private var lastWidthMeasureSpec: Int = 0
    private var currentHeight: Int = 0
    private var lastPosition: Int = 0
    private var isScrolling: Boolean = false

    init {
        addOnPageChangeListener(object : SimpleOnPageChangeListener() {
            override fun onPageScrolled(
                position: Int,
                positionOffset: Float,
                positionOffsetPixels: Int
            ) {
                if (positionOffset == 0f) {
                    isScrolling = false
                    requestLayout()
                    return
                }

                val srcPosition = if (position >= lastPosition) position else position + 1
                val destPosition = if (position >= lastPosition) position + 1 else position

                val srcHeight = getViewHeight(srcPosition)
                val destHeight = getViewHeight(destPosition)

                currentHeight = (srcHeight + (destHeight - srcHeight) *
                        if (position >= lastPosition) positionOffset else 1 - positionOffset).toInt()

                isScrolling = true
                requestLayout()
            }

            override fun onPageScrollStateChanged(state: Int) {
                if (state == SCROLL_STATE_IDLE) {
                    lastPosition = currentItem
                }
            }
        })
    }

    override fun setAdapter(adapter: PagerAdapter?) {
        require(adapter == null || adapter is AutoHeightPager) { "PagerAdapter must implement AutoHeightPager." }
        super.setAdapter(adapter)
    }

    private fun getViewHeight(position: Int): Int {
        val adapter = adapter as? AutoHeightPager ?: return 0

        return run {
            val view = adapter.getView(position) ?: return 0
            view.measure(
                lastWidthMeasureSpec,
                MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED)
            )
            view.measuredHeight
        }
    }

    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        lastWidthMeasureSpec = widthMeasureSpec
        var heightSpec = heightMeasureSpec
        if (isScrolling) {
            heightSpec = MeasureSpec.makeMeasureSpec(currentHeight, MeasureSpec.EXACTLY)
        } else {
            getViewHeight(currentItem).takeIf { it > 0 }?.let {
                heightSpec = MeasureSpec.makeMeasureSpec(it, MeasureSpec.EXACTLY)
            }
        }
        super.onMeasure(widthMeasureSpec, heightSpec)
    }
}

2. AutoHeightPagerAdapter

package com.yxlh.androidxy.demo.ui.viewpager

import android.view.View
import android.view.ViewGroup
import androidx.viewpager.widget.PagerAdapter
import com.yxlh.androidxy.demo.ui.viewpager.vp.AutoHeightPager

class AutoHeightPagerAdapter : PagerAdapter(), AutoHeightPager {

    private val viewList = mutableListOf<View>()

    override fun instantiateItem(container: ViewGroup, position: Int): Any {
        val view = viewList[position]
        val parent = view.parent as? ViewGroup
        parent?.removeView(view)
        container.addView(view)
        return view
    }

    override fun destroyItem(container: ViewGroup, position: Int, `object`: Any) {
        container.removeView(`object` as View)
    }

    fun setViews(views: List<View>) {
        viewList.clear()
        viewList.addAll(views)
        notifyDataSetChanged()
    }

    override fun getView(position: Int): View? {
        return viewList.getOrNull(position)
    }

    override fun getCount(): Int {
        return viewList.size
    }

    override fun isViewFromObject(view: View, `object`: Any): Boolean {
        return view == `object`
    }
}

3. Activity 代碼

package com.yxlh.androidxy.demo.ui.viewpager

import android.os.Bundle
import android.view.LayoutInflater
import android.view.View
import androidx.appcompat.app.AppCompatActivity
import com.yxlh.androidxy.R
import com.yxlh.androidxy.demo.ui.viewpager.vp.AutoHeightViewPager

class VpActivity : AppCompatActivity() {
    private var mAutoHeightVp: AutoHeightViewPager? = null

    private var mAdapter: AutoHeightPagerAdapter? = null
    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_vp)

        val viewList: MutableList<View> = ArrayList()
        viewList.add(LayoutInflater.from(this).inflate(R.layout.view_demo_1, null))
        viewList.add(LayoutInflater.from(this).inflate(R.layout.view_demo_2, null))

        mAutoHeightVp = findViewById(R.id.viewpager)
        mAutoHeightVp?.setAdapter(AutoHeightPagerAdapter().also { mAdapter = it })
        mAdapter?.setViews(viewList)
        mAutoHeightVp?.setCurrentItem(1)
    }
}

4. 布局 XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
    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">

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <com.yxlh.androidxy.demo.ui.viewpager.vp.AutoHeightViewPager
                android:id="@+id/viewpager"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:adjustViewBounds="true"
                android:scaleType="fitXY"
                android:src="@drawable/vp_content" />
        </LinearLayout>
    </androidx.core.widget.NestedScrollView>

</androidx.constraintlayout.widget.ConstraintLayout>

總結(jié)

通過自定義 ViewPager 的動(dòng)態(tài)高度適配功能啸臀,我們可以解決內(nèi)容高度不一致導(dǎo)致的布局問題届宠。這種方案可以適應(yīng)不同頁面內(nèi)容的高度變化,實(shí)現(xiàn)平滑的過渡效果乘粒,非常適用于動(dòng)態(tài)內(nèi)容展示的場景豌注。
github:github.com/yixiaolunhui/AndroidXY

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市灯萍,隨后出現(xiàn)的幾起案子轧铁,更是在濱河造成了極大的恐慌,老刑警劉巖旦棉,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件齿风,死亡現(xiàn)場離奇詭異,居然都是意外死亡绑洛,警方通過查閱死者的電腦和手機(jī)救斑,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來真屯,“玉大人脸候,你說我怎么就攤上這事。” “怎么了纪他?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵鄙煤,是天一觀的道長。 經(jīng)常有香客問我茶袒,道長梯刚,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任薪寓,我火速辦了婚禮亡资,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘向叉。我一直安慰自己锥腻,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布母谎。 她就那樣靜靜地躺著瘦黑,像睡著了一般。 火紅的嫁衣襯著肌膚如雪奇唤。 梳的紋絲不亂的頭發(fā)上幸斥,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音咬扇,去河邊找鬼甲葬。 笑死,一個(gè)胖子當(dāng)著我的面吹牛懈贺,可吹牛的內(nèi)容都是我干的经窖。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼梭灿,長吁一口氣:“原來是場噩夢啊……” “哼画侣!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起堡妒,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤棉钧,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后涕蚤,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡的诵,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年万栅,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片西疤。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡烦粒,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情扰她,我是刑警寧澤兽掰,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布,位于F島的核電站徒役,受9級(jí)特大地震影響孽尽,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜忧勿,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一杉女、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧鸳吸,春花似錦熏挎、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至养匈,卻和暖如春哼勇,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背乖寒。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國打工猴蹂, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人楣嘁。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓磅轻,卻偏偏與公主長得像,于是被迫代替她去往敵國和親逐虚。 傳聞我的和親對(duì)象是個(gè)殘疾皇子聋溜,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容