提问人:Jeffrey 提问时间:5/14/2021 更新时间:5/14/2021 访问量:101
为什么 findViewById 在搜索 RecyclerView 时返回 null?
Why does findViewById returning null when searching for the RecyclerView?
问:
为什么返回 null?val rv: RecyclerView = findViewById(R.id.material_list_rv)
主要活动
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)
}
}
activity_main
<?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>
MaterialListFragment
class MaterialListFragment : Fragment() {
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View {
return inflater.inflate(R.layout.fragment_material_list, container, false)
}
}
fragment_material_list
<?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>
答:
1赞
Ashish
5/14/2021
#1
您正在 MainActivity 中查找 RecylerView,而该 RecylerView 不存在。 相反,您应该尝试在 FragmentActivity 中访问它。
2赞
salezica
5/14/2021
#2
问题
您拨打了 in 的电话。现在还为时过早,此时 Fragment 的视图还没有创建。findViewById
MainActivity.onCreate
您应该在 .如果你打电话进来,它会起作用。喜欢这个:MaterialListFragment
findViewById
onCreateView
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 和自定义视图管理它们自己的子项。
如果上层容器深入到它们的子容器中,则很容易犯错误(就像这里的错误一样!),并且您将失去在不破坏包含 Activity 的情况下更新 Fragment 和 View 的内部详细信息的能力。
Activity/Fragment 生命周期图表
为了定位自己,请记住这一点(尽管此图非常简化):
评论
0赞
Jeffrey
5/14/2021
多谢。您的回答将我引向此链接 developer.android.com/guide/fragments/communicate
评论