欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

基于Android實現(xiàn)可滾動的環(huán)形菜單效果

 更新時間:2022年03月29日 15:14:41   作者:fb0122  
這篇文章主要為大家詳細介紹了Android如何使用kotlin實現(xiàn)可滾動的環(huán)形菜單,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下

效果

首先看一下實現(xiàn)的效果:

可以看出,環(huán)形菜單的實現(xiàn)有點類似于滾輪效果,滾輪效果比較常見,比如在設(shè)置時間的時候就經(jīng)常會用到滾輪的效果。那么其實通過環(huán)形菜單的表現(xiàn)可以將其看作是一個圓形的滾輪,是一種滾輪實現(xiàn)的變式。

實現(xiàn)環(huán)形菜單的方式比較明確的方式就是兩種,一種是自定義View,這種實現(xiàn)方式需要自己處理滾動過程中的繪制,不同item的點擊、綁定數(shù)據(jù)管理等等,優(yōu)勢是可以深層次的定制化,每個步驟都是可控的。另外一種方式是將環(huán)形菜單看成是一個環(huán)形的List,也就是通過自定義LayoutManager來實現(xiàn)環(huán)形效果,這種方式的優(yōu)勢是自定義LayoutManager只需要實現(xiàn)子控件的onLayoutChildren即可,數(shù)據(jù)綁定也由RecyclerView管理,比較方便。本文主要是通過第二種方式來實現(xiàn),即自定義LayoutManager的方式。

如何實現(xiàn)

第一步需要繼承RecyclerView.LayoutManager:

class ArcLayoutManager(
    private val context: Context,
) : RecyclerView.LayoutManager() {
	override fun generateDefaultLayoutParams(): RecyclerView.LayoutParams =
        RecyclerView.LayoutParams(MATCH_PARENT, WRAP_CONTENT)
  
  override fun onLayoutChildren(recycler: RecyclerView.Recycler, state: RecyclerView.State) {
        super.onLayoutChildren(recycler, state)
        fill(recycler)
    }
  
  // layout子View
  private fun fill(recycler: RecyclerView.Recycler) {
  }
}

繼承LayoutManager之后,重寫了onLayoutChildren,并且通過fill()函數(shù)來擺放子View,所以fill()函數(shù)如何實現(xiàn)就是重點了:

首先看一下上圖,首先假設(shè)圓心坐標(x, y)為坐標原點建立坐標系,然后圖中藍色線段b的為半徑,紅色線段a為子View中心到x軸的距離,綠色線段c為子View中心到y(tǒng)軸的距離,要知道子View如何擺放,就需要計算出紅色和綠色的距離。那么假設(shè)以-90為起點開始擺放子View,假設(shè)一共有n個子View,那么就可以計算得到:

計算中,需要使用弧度計算,需要將角度首先轉(zhuǎn)為弧度:Math.toRadians(angle)?;《扔嬎愎剑夯《?= 角度 * π / 180

根據(jù)上述公式就可以得出fill()函數(shù)為:

// mCurrAngle: 當前初始擺放角度
// mInitialAngle:初始角度
private fun fill(recycler: RecyclerView.Recycler) {
  if (itemCount == 0) {
    removeAndRecycleAllViews(recycler)
    return
  }

  detachAndScrapAttachedViews(recycler)

  angleDelay = Math.PI * 2 / (mVisibleItemCount)

  if (mCurrAngle == 0.0) {
    mCurrAngle = mInitialAngle
  }

  var angle: Double = mCurrAngle
  val count = itemCount
  for (i in 0 until count) {
    val child = recycler.getViewForPosition(i)
    measureChildWithMargins(child, 0, 0)
    addView(child)

    //測量的子View的寬,高
    val cWidth: Int = getDecoratedMeasuredWidth(child)
    val cHeight: Int = getDecoratedMeasuredHeight(child)

    val cl = (innerX + radius * sin(angle)).toInt()
    val ct = (innerY - radius * cos(angle)).toInt()

    //設(shè)置子view的位置
    var left = cl - cWidth / 2
    val top = ct - cHeight / 2
    var right = cl + cWidth / 2
    val bottom = ct + cHeight / 2

    layoutDecoratedWithMargins(
      child,
      left,
      top,
      right,
      bottom
    )
    angle += angleDelay * orientation.value
  }

  recycler.scrapList.toList().forEach {
    recycler.recycleView(it.itemView)
  }
}

通過實現(xiàn)以上fill()函數(shù),首先就可以實現(xiàn)一個圓形排列的RecyclerView:

此時如果嘗試滑動的話,是沒有效果的,所以還需要實現(xiàn)在滑動過程中的View擺放, 因為僅允許在豎直方向的滑動,所以:

// 允許豎直方向的滑動
override fun canScrollVertically() = true

// 滑動過程的處理
override fun scrollVerticallyBy(
  dy: Int,
  recycler: RecyclerView.Recycler,
  state: RecyclerView.State
): Int {
  // 根據(jù)滑動距離 dy 計算滑動角度
  val theta = ((-dy * 180) * orientation.value / (Math.PI * radius * DEFAULT_RATIO)) * DEFAULT_SCROLL_DAMP
  // 根據(jù)滑動角度修正開始擺放的角度
  mCurrAngle = (mCurrAngle + theta) % (Math.PI * 2)
  offsetChildrenVertical(-dy)
  fill(recycler)
  return dy
}

在根據(jù)滑動距離計算角度時,將豎直方向的滑動距離,近似看成是在圓上的弧長,再根據(jù)自定義的系數(shù)計算出需要滑動的角度。然后重新擺放子View。

實現(xiàn)了上述函數(shù)后,就可以正常滾動了。那么當我們希望滾動完成后,能夠自動將距離最近的一個子View位置修正為初始位置(在本例中即為-90度的位置),應該如何實現(xiàn)呢?

// 當所有子View計算并擺放完畢會調(diào)用該函數(shù)
override fun onLayoutCompleted(state: RecyclerView.State) {
    super.onLayoutCompleted(state)
    stabilize()
}

// 修正子View位置
private fun stabilize() {
}

要修正子View位置,就需要在所有子View都擺放完成后,再計算子View的位置,再重新擺放,所以stabilize() 實現(xiàn)就是關(guān)鍵了, 接下來就看下stabilize() 的實現(xiàn):

// 修正子View位置
private fun stabilize() {
  if (childCount < mVisibleItemCount / 2 || isSmoothScrolling) return

  var minDistance = Int.MAX_VALUE
  var nearestChildIndex = 0
  for (i in 0 until childCount) {
    val child = getChildAt(i) ?: continue
    if (orientation == FillItemOrientation.LEFT_START && getDecoratedRight(child) > innerX)
    continue
    if (orientation == FillItemOrientation.RIGHT_START && getDecoratedLeft(child) < innerX)
    continue

    val y = (getDecoratedTop(child) + getDecoratedBottom(child)) / 2
    if (abs(y - innerY) < abs(minDistance)) {
      nearestChildIndex = i
      minDistance = y - innerY
    }
  }
  if (minDistance in 0..10) return
  getChildAt(nearestChildIndex)?.let {
    startSmoothScroll(
      getPosition(it),
      true
    )
  }
}
 
// 滾動
private fun startSmoothScroll(
        targetPosition: Int,
        shouldCenter: Boolean
    ) {
}

stabilize()函數(shù)中,做了一件事就是找到距離圓心最近距離的一個子View,然后調(diào)用startSmoothScroll() 滾動到該子View的位置。

接下來就是startSmoothScroll()的實現(xiàn)了:

private val scroller by lazy {
  object : LinearSmoothScroller(context) {

    override fun calculateDtToFit(
      viewStart: Int,
      viewEnd: Int,
      boxStart: Int,
      boxEnd: Int,
      snapPreference: Int
    ): Int {
      if (shouldCenter) {
        val viewY = (viewStart + viewEnd) / 2
        var modulus = 1
        val distance: Int
        if (viewY > innerY) {
          modulus = -1
          distance = viewY - innerY
        } else {
          distance = innerY - viewY
        }
        val alpha = asin(distance.toDouble() / radius)
        return (PI * radius * DEFAULT_RATIO * alpha / (180 * DEFAULT_SCROLL_DAMP) * modulus).roundToInt()
      } else {
        return super.calculateDtToFit(
          viewStart,
          viewEnd,
          boxStart,
          boxEnd,
          snapPreference
        )
      }
    }

    override fun calculateSpeedPerPixel(displayMetrics: DisplayMetrics) =
    SPEECH_MILLIS_INCH / displayMetrics.densityDpi
  }
}

// 滾動
private fun startSmoothScroll(
  targetPosition: Int,
  shouldCenter: Boolean
) {
  this.shouldCenter = shouldCenter
  scroller.targetPosition = targetPosition
  startSmoothScroll(scroller)
}

滾動的過程是通過自定義的LinearSmoothScroller來實現(xiàn)的,主要是兩個重寫函數(shù):calculateDtToFit, calculateSpeedPerPixel。其中calculateDtToFit 需要說明一下的是,當豎直方向滾動的時候,它的參數(shù)分別為:(子View的top,子View的bottom,RecyclerView的top,RecyclerView的bottom),返回值為豎直方向上的滾動距離。當水平方向滾動的時候,它的參數(shù)分別為:(子View的left,子View的right,RecyclerView的left,RecyclerView的right),返回值為水平方向上的滾動距離。 而calculateSpeedPerPixel 函數(shù)主要是控制滑動速率的,返回值表示每滑動1像素需要耗費多長時間(ms),這里SPEECH_MILLIS_INCH是自定義的阻尼系數(shù)。

關(guān)于calculateDtToFit計算過程如下:

計算出目標子View與x軸的夾角后,再根據(jù)之前說過的根據(jù)滑動距離 dy 計算滑動角度反推出dy的值就可以了。

通過上述一系列操作,就可以實現(xiàn)了大部分效果,最后再加上一個初始位置的View 放大的效果:

private fun fill(recycler: RecyclerView.Recycler) {
  ...
  layoutDecoratedWithMargins(
    child,
    left,
    top,
    right,
    bottom
  )
  scaleChild(child)
  ...
}

private fun scaleChild(child: View) {
  val y = (child.top + child.bottom) / 2
  val scale = if (abs( y - innerY) > child.measuredHeight / 2) {
    child.translationX = 0f
    1f
  } else {
    child.translationX = -child.measuredWidth * 0.2f
    1.2f
  }
  child.pivotX = 0f
  child.pivotY = child.height / 2f
  child.scaleX = scale
  child.scaleY = scale
}

當子View位于初始位置一定范圍內(nèi),將其放大1.2倍,注意子View放大的同時,x坐標也同樣需要變化。

經(jīng)過上述步驟,就實現(xiàn)了基于自定義LayoutManager方式的環(huán)形菜單。

以上就是基于Android實現(xiàn)可滾動的環(huán)形菜單效果的詳細內(nèi)容,更多關(guān)于Android環(huán)形菜單的資料請關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • Android使用Sensor感應器實現(xiàn)線程中刷新UI創(chuàng)建android測力計的功能

    Android使用Sensor感應器實現(xiàn)線程中刷新UI創(chuàng)建android測力計的功能

    這篇文章主要介紹了Android使用Sensor感應器實現(xiàn)線程中刷新UI創(chuàng)建android測力計的功能,實例分析了Android使用Sensor感應器實現(xiàn)UI刷新及創(chuàng)建測力器的技巧,需要的朋友可以參考下
    2015-12-12
  • Kotlin對象的懶加載方式by?lazy?與?lateinit?異同詳解

    Kotlin對象的懶加載方式by?lazy?與?lateinit?異同詳解

    這篇文章主要為大家介紹了Kotlin對象的懶加載方式by?lazy?與?lateinit?異同詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2022-10-10
  • Android創(chuàng)建Menu菜單實例

    Android創(chuàng)建Menu菜單實例

    這篇文章主要介紹了Android創(chuàng)建Menu菜單實例,講述了Android菜單項的創(chuàng)建方法,在Android應用程序開發(fā)中非常具有實用價值,需要的朋友可以參考下
    2014-10-10
  • Android計時器chronometer使用實例講解

    Android計時器chronometer使用實例講解

    這篇文章主要為大家詳細介紹了Android計時器chronometer使用實例,介紹了Android計時器chronometer基本使用方法,感興趣的小伙伴們可以參考一下
    2016-04-04
  • Kotlin掛起函數(shù)應用介紹

    Kotlin掛起函數(shù)應用介紹

    掛起函數(shù)用狀態(tài)機以掛起點將協(xié)程的運算邏輯拆分成不同的片段,每次執(zhí)行協(xié)程運行不同的邏輯片段,由此可以知道協(xié)程是運行在線程中的,線程的并發(fā)處理方式也可以用在協(xié)程上
    2022-11-11
  • Android開發(fā)基礎(chǔ)簡化Toast調(diào)用方法詳解

    Android開發(fā)基礎(chǔ)簡化Toast調(diào)用方法詳解

    這篇文章主要為大家介紹了Android開發(fā)基礎(chǔ)簡化Toast調(diào)用方法的相關(guān)資料,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪
    2023-02-02
  • Android 加載GIF圖最佳實踐方案

    Android 加載GIF圖最佳實踐方案

    最近在項目中遇到需要在界面上顯示一個本地的 GIF 圖的功能,下面通過本文給大家分享Android 加載GIF圖最佳實踐方案,需要的朋友參考下吧
    2017-08-08
  • Android常用的數(shù)據(jù)加密方式代碼詳解

    Android常用的數(shù)據(jù)加密方式代碼詳解

    這篇文章主要介紹了Android常用的數(shù)據(jù)加密方式代碼詳解,介紹了四種常見加密算法及代碼示例,具有一定參考價值,需要的朋友可以了解下。
    2017-11-11
  • Flutter實現(xiàn)支付寶集五福手畫福字功能

    Flutter實現(xiàn)支付寶集五福手畫福字功能

    支付寶一年一度的集五?;顒佑珠_始了,其中包含了一個功能就是手寫福字,還包括撤銷一筆,清除重寫,保存相冊等。本文將介紹如何使用Flutter實現(xiàn)這些功能,感興趣的可以了解一下
    2022-01-01
  • Android中AsyncTask的用法實例分享

    Android中AsyncTask的用法實例分享

    AsyncTask的特點是任務(wù)在主線程之外運行,而回調(diào)方法是在主線程中執(zhí)行, 這就有效地避免了使用Handler帶來的麻煩
    2014-02-02

最新評論