焦点未移出 RowsSupportFragment

2024-05-20

我创建了一个活动,其中有简单的按钮和位于底部的 RowsSupportFragment。

初始焦点给予 Button,当我按下 D-pad 向下时,焦点会转移到 RowsSupportFragment 中的项目,之后只有 D-pad 右侧和 D-pad 左侧起作用,当我单击向上 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
    }
}

尝试添加

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

到 VerticalGridView 样式styles.xml

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

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

到 VerticalGridView 中lb_rows_fragment.xml

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

焦点未移出 RowsSupportFragment 的相关文章

随机推荐