需要帮助。我已经检查了堆栈溢出中的其他一些解决方案,但我没有到达使我的片段工作。
问题:当我显示我的片段时,我的屏幕是空的,我有错误“E/RecyclerView:没有连接适配器;跳过布局”
3个问题(当然有联系):
片段(XML)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/ServiceIssuesReader"
tools:context=".ui.service.ServiceIssuesReaderFragment">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="LinearLayoutManager"
/>
</RelativeLayout>
一行数据(一天)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip" >
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_marginRight="6dip"
android:contentDescription="TODO"
android:src="@mipmap/ic_launcher" />
<TextView
android:id="@+id/secondLine"
android:layout_width="fill_parent"
android:layout_height="26dip"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_toRightOf="@id/icon"
android:text="Description"
android:textSize="12sp" />
<TextView
android:id="@+id/firstLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/secondLine"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_alignWithParentIfMissing="true"
android:layout_toRightOf="@id/icon"
android:gravity="center_vertical"
android:text="Example application"
android:textSize="16sp" />
</RelativeLayout>
片段类
class ServiceIssuesReaderFragment: Fragment() {
var mAdapter: RecyclerView.Adapter<MyAdapter.ViewHolder>? = null
override fun onCreateView(
inflater: LayoutInflater,
container: ViewGroup?,
savedInstanceState: Bundle?
): View? {
val rootView = inflater.inflate(R.layout.fragment_issues_reader, container, false)
mAdapter = MyAdapter(mutableListOf<String>())
var recyclerView = view?.findViewById<RecyclerView>(R.id.my_recycler_view) as RecyclerView
recyclerView.setHasFixedSize(true)
recyclerView.layoutManager = LinearLayoutManager(context)
recyclerView.adapter = mAdapter
return rootView
}
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
}
override fun onResume() {
super.onResume()
// Adding stub data
val input: MutableList<String> = ArrayList()
for (i in 0..99) {
Log.d("onResume:: ", ">> + [Test$i]")
input.add("Test$i")
}
(mAdapter as MyAdapter).addItems(input)
mAdapter?.notifyDataSetChanged()
}
}
适配器类
class MyAdapter (private var values: MutableList<String>): RecyclerView.Adapter<MyAdapter.ViewHolder>() {
// Provide a reference to the views for each data item
// Complex data items may need more than one view per item, and
// you provide access to all the views for a data item in a view holder
inner class ViewHolder(v: View) : RecyclerView.ViewHolder(v) {
// each data item is just a string in this case
var txtHeader: TextView
var txtFooter: TextView
var layout: View
init {
layout = v
txtHeader = v.findViewById<TextView>(R.id.firstLine)
txtFooter = v.findViewById<TextView>(R.id.secondLine)
}
}
fun add(position: Int, item: String) {
values.add(position, item)
notifyItemInserted(position)
}
fun remove(position: Int) {
values.removeAt(position)
notifyItemRemoved(position)
}
fun addItems (newValues: MutableList<String>){
values.addAll(newValues)
notifyDataSetChanged()
}
// Create new views (invoked by the layout manager)
override fun onCreateViewHolder(
parent: ViewGroup,
viewType: Int
): ViewHolder {
// create a new view
val inflater = LayoutInflater.from(
parent.context
)
//val v: View = inflater.inflate(R.layout.row_layout, parent, false)
val v: View = inflater.inflate(R.layout.row_layout_issue, parent, false)
// set the view's size, margins, paddings and layout parameters
return ViewHolder(v)
}
// Replace the contents of a view (invoked by the layout manager)
override fun onBindViewHolder(holder: ViewHolder, position: Int) {
// - get element from your dataset at this position
// - replace the contents of the view with that element
val name = values[position]
holder.txtHeader.text = name
holder.txtHeader.setOnClickListener { remove(position) }
holder.txtFooter.text = "Footer: $name"
}
// Return the size of your dataset (invoked by the layout manager)
override fun getItemCount(): Int {
return values.size
}
}
我尝试在onCreateView、onCreate和onResume中初始化回收器,但没有更好的结果。为什么它不起作用?
您可以尝试在函数内使用notifyDataSetChanged(),而不是在片段中调用它。
另一件事是mAdapter应该是MyAdapter类型。
所以,我找到了一个解决方案!
要删除错误No adapter attached Error,我更改
recyclerView.layoutManager = LinearLayoutManager(context)
recyclerView.adapter = mAdapter
到
recyclerView.apply {
layoutManager = LinearLayoutManager(context)
adapter = mAdapter
}
(我在另一个帖子中看到了相反的情况,但谁知道呢……)为什么是工作?我不知道,但这是工作!
我正在尝试为我的Kotlin RecyclerView实现一个onClickListener。它根本没有开火。代码没有标记为红色或类似的东西。你在NotesActivity中看到的日志和吐司。我们没有被处决。我的recyclerview本身就在工作,但onClickListener根本不会启动。 NotesAdapter。kt NotesActivity。kt adapter_note_layou
当应用程序启动时,我得到一个空白屏幕,当我检查日志时,我得到:E/回收人员视图:没有连接适配器;跳过布局错误 我不知道为什么?任何想法,它似乎没有附加回收器视图或添加任何数据,我附加了Main活动、DataAdapter和数据类。 主要活动 数据适配器 下面是我的数据类,将从中提取数据 我ncluded.java 收集器和设置器 这是jsonResponse类,在接口中引用 感谢任何帮助。
我试图使用Reform2显示来自虚拟服务器(JSON服务器)的JSON数据,并将其显示在片段中的RecyclerView中。到目前为止,正在发生以下事件(使用日志信息发现): 主片段<代码>字符片段(CharactersListFragment)。kt创建已启动 只调用了。它正在返回0 未调用OnCreateViewHolder()和onBindViewHolder() 成功地从服务器获取数据并将
我正在尝试转换到Kotlin。我正在按照Kotlin的指示行事。组织: getClass() 为了从对象检索类型信息,我们使用javaClass扩展属性。 foo.java类 而不是Java的使用。 ::class.java 我有一个名为HomePage的类,它扩展了AppCompatActivity(在Android中)。我正在使用Android Studio。我试着做并且它有一个错误: 我怎样
一切正常,但数据没有显示。 但是当我签入“logcat”时,我发现了这个错误消息: 2021 10月20日11:29:37.387 7327-7327/com。实例myplay E/RecyclerView:未连接适配器;跳过布局 2021-10-20 11:29:37.388 7327-7327/com.example.myplayE/RecyClerView:未连接适配器;跳过布局 主要活动。
我正在编写一个应用程序,该应用程序通过接收Json文件的API来显示票房的rrank,如果我评论有关的代码,一切都可以正常工作。适配器代码很好,我猜想如果没有,日志是这样的: 我认为代码的顺序是错误的,但不知道确切的...主要活动.java是: