首页 > 解决方案 > 焦点没有移出 RowsSupportFragment

问题描述

我创建了一个活动,它有一个简单的按钮和一个 RowsSupportFragment 放置在底部。

初始焦点被赋予 Button 并且当我按下 D-pad 向下焦点转移到 RowsSupportFragment 中的项目之后,只有 D-pad right 和 D-pad left 有效,当我向上单击 D-pad 时焦点不会转到按钮。

在此处输入图像描述

活动测试.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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".standard.TestActivity">

    <Button
        android:id="@+id/btnTest"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Test"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"/>

    <FrameLayout
        android:id="@+id/fragmentContainer"
        android:layout_width="match_parent"
        android:layout_height="220dp"
        android:scrollbars="none"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

测试活动.kt

class TestActivity : FragmentActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_test)
        loadFragment()
    }

    private fun loadFragment() {
        supportFragmentManager.beginTransaction()
            .replace(R.id.fragmentContainer, BingeRowFragment())
            .commit()
    }
}

BingeRowFragment.kt

class BingeRowFragment : RowsSupportFragment() {

    override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
        super.onViewCreated(view, savedInstanceState)
        createRows()
    }

    private fun createRows() {
        val movieList = listOf("Movie1", "Movie2", "Movie3", "Movie4", "Movie5", "Movie6",
            "Movie7", "Movie8", "Movie9", "Movie10", "Movie11", "Movie12")

        val itemPresenter = BingeItemPresenter()
        val listRowAdapter = ArrayObjectAdapter(itemPresenter)
        movieList.forEach {
            listRowAdapter.add(it)
        }

        val rowsAdapter = ArrayObjectAdapter(ListRowPresenter(FocusHighlight.ZOOM_FACTOR_MEDIUM))
        rowsAdapter.add(ListRow(listRowAdapter))
        adapter = rowsAdapter
    }
}

BingeItemPresenter.kt

class BingeItemPresenter: Presenter() {

    private lateinit var movieImage: ImageView
    private lateinit var movieTitle: TextView

    override fun onCreateViewHolder(parent: ViewGroup): ViewHolder {
        // margin between items
        parent.findViewById<HorizontalGridView>(R.id.row_content).setItemSpacing(24)
        val cardViewLayout = LayoutInflater.from(parent.context)
            .inflate(R.layout.standard_movie_item, parent, false)

        movieImage = cardViewLayout.findViewById(R.id.movie_image)
        movieTitle = cardViewLayout.findViewById(R.id.movie_name)

        return ViewHolder(cardViewLayout)
    }

    override fun onBindViewHolder(viewHolder: ViewHolder, item: Any) {
        val movie = item as String
        movieImage.setImageResource(R.drawable.movie)
        movieTitle.text = movie
    }

    override fun onUnbindViewHolder(viewHolder: ViewHolder?) {
        // nullify image
    }
}

标签: androidandroid-layoutandroid-tvleanback

解决方案


尝试添加

 <item name="focusOutFront">true</item>
 <item name="focusOutEnd">true</item>

到 VerticalGridView 样式styles.xml

如果不起作用,请尝试添加

app:focusOutEnd="true"
app:focusOutFront="true"

到 VerticalGridView 中lb_rows_fragment.xml


推荐阅读