Android TV Item onFocus Zoom

gg58donl  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(181)

使用下面的函数,我试图扩展焦点中的项目的高度和宽度。我面临的问题是高度只向底部扩展,顶部似乎是固定的。我想要完全相反。

  1. inner class ItemViewSelectedListener : OnItemViewSelectedListener {
  2. override fun onItemSelected(
  3. itemViewHolder: Presenter.ViewHolder?,
  4. item: Any?,
  5. rowViewHolder: RowPresenter.ViewHolder?,
  6. row: Row?
  7. ) {
  8. if (item is MenuLabelI) {
  9. val indexOfItem = ((row as ListRow).adapter as ArrayObjectAdapter).indexOf(item)
  10. itemSelectedListener?.invoke(item)
  11. itemIndexSelectedListener?.invoke(indexOfItem)
  12. }
  13. itemViewHolder?.view?.setOnFocusChangeListener { view, booleanValue ->
  14. val layoutParams = view.layoutParams as ViewGroup.MarginLayoutParams
  15. if (booleanValue) {
  16. view.setBackgroundResource(R.color.selector_color_taj_trees)
  17. layoutParams.width = getWidthInPercent(view.context, 14)
  18. layoutParams.height = getHeightInPercent(view.context, 17)
  19. view.layoutParams = layoutParams
  20. } else {
  21. view.setBackgroundResource(R.color.item_color_taj_trees)
  22. layoutParams.width = getWidthInPercent(view.context, 12)
  23. layoutParams.height = getHeightInPercent(view.context, 16)
  24. view.layoutParams = layoutParams
  25. }
  26. }
  27. }
  28. }

字符串
我希望高度向顶部扩展,底部应该是固定的。我已经尝试使用scaleX,scaleY,但这只会增加项目内容的大小,而不是项目本身。layoutParams.setMargins也不起作用。无论我做什么,顶部似乎是固定的。有人能提供解决方案吗?

6bc51xsx

6bc51xsx1#

有一些内置的缩放类型的onFocus你可以使用它
初始化ListRowPresenter时,在参数中传入focusZoomFactor

  1. ListRowPresenter(FocusHighlight.ZOOM_FACTOR_LARGE, false)

字符串
其他缩放因子类型

  1. FocusHighlight.ZOOM_FACTOR_NONE
  2. FocusHighlight.ZOOM_FACTOR_SMALL
  3. FocusHighlight.ZOOM_FACTOR_MEDIUM
  4. FocusHighlight.ZOOM_FACTOR_XSMALL

相关问题