1

为什么 val rv: RecyclerView = findViewById(R.id.material_list_rv)返回null?

主要活动

class MainActivity : AppCompatActivity() {

    var adaptor: MaterialListAdaptor = MaterialListAdaptor()

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)
        if (savedInstanceState == null) {
            supportFragmentManager.commit {
                setReorderingAllowed(true)
                add<MaterialListFragment>(R.id.fragment_container_view)
            }
        }

        initRecyclerView()
        setRecyclerViewData()

    }

    private fun initRecyclerView(){
        val rv: RecyclerView = findViewById(R.id.material_list_rv)
        rv.layoutManager = LinearLayoutManager(this@MainActivity)
        rv.adapter = adaptor
    }

    private fun setRecyclerViewData(){
        val l = DataSource.createMaterialList()
        adaptor.setDataSet(l)
    }
}

活动主

<?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=".MainActivity">

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/fragment_container_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

材质列表片段

class MaterialListFragment : Fragment() {

    override fun onCreateView(
        inflater: LayoutInflater,
        container: ViewGroup?,
        savedInstanceState: Bundle?
    ): View {
        return inflater.inflate(R.layout.fragment_material_list, container, false)
    }
}

片段材料列表

<?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=".MaterialListFragment">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/material_list_rv"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginStart="8dp"
        android:layout_marginTop="8dp"
        android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:listitem="@layout/material_list_rv_list_item" />

</androidx.constraintlayout.widget.ConstraintLayout>
4

2 回答 2

2

问题

您拨打了findViewByIdin MainActivity.onCreate。现在还为时过早,那时还没有创建 Fragment 的视图。

您应该在MaterialListFragment. 如果你打电话findViewByIdonCreateView它会工作。像这样:

val root = inflater.inflate(R.layout.fragment_material_list, container, false)
val rv = root.findViewById(R.id. material_list_rv)

// Do whatever (eg assign rv to a field in the Fragment to use it later)

return root

一些忠告

即使您的代码有效,也要尝试让活动、片段和自定义视图管理它们自己的子视图。

如果上面的容器深入到它们的子容器中,容易出错(就像这里的那个!)并且你失去了在不破坏包含 Activity 的情况下更新 Fragment 和 Views 的内部细节的能力。

Activity/Fragment 生命周期图

要确定自己的方向,请记住这一点(尽管此图非常简化):

在此处输入图像描述

于 2021-05-13T18:47:25.280 回答
1

您正在 MainActivity 中寻找 RecylerView,但它并不存在。相反,您应该尝试在 FragmentActivity 中访问它。

于 2021-05-13T18:36:26.577 回答