Android:无法使用 CustomAdapter 刷新 Listview

标签 android android-volley kotlin android-listfragment custom-adapter

我需要用新数据刷新 ListView 。下面这段代码用于获取FragmentActivity中的OnCreateView中的数据。

override fun onCreateView(inflater: LayoutInflater?, container: ViewGroup?,
                          savedInstanceState: Bundle?): View? {
        val url = "something"

        val request_queue = Volley.newRequestQueue(this.context)
        val stringRequest = StringRequest(Request.Method.GET, url,
                Response.Listener<String> { response ->
                    val pending_job = Gson().fromJson<ArrayList<HashMap<String, String>>>(
                            response.toString(),
                            object : TypeToken<ArrayList<HashMap<String, String>>>() {}.type
                    )
                    this@PlaceholderFragment.showList(rootView, R.id.pending_job_list, pending_job)

                    pending_job_list_layout.setOnRefreshListener(this)

                    request_queue.stop()
                }, Response.ErrorListener { error ->
            if (error.networkResponse != null) {
                Toast.makeText(this.context, error.networkResponse.statusCode.toString(), Toast.LENGTH_SHORT).show()
            }
            request_queue.stop()
        })
        request_queue.add(stringRequest)
}

showList是设置CustomAdapter的函数,即

fun showList(rootView: View, tab_id: Int, job_list: ArrayList<HashMap<String, String>>) {

    // custom display ListView
    val adapter: CustomAdapter = CustomAdapter(
            this.context,
            job_list
    )

    this_adapter = adapter

    val listView = rootView.findViewById(tab_id) as ListView
    listView.adapter = adapter
}

,以及这个 CustomAdapter 类,

class CustomAdapter(internal var mContext: Context,
                internal var job_list: ArrayList<HashMap<String, String>>
                ) : BaseAdapter() {

override fun getCount(): Int {
    return job_list.size
}

override fun getItem(position: Int): Any? {
    return null
}

override fun getItemId(position: Int): Long {
    return 0
}

override fun getView(position: Int, view: View?, parent: ViewGroup): View {
    val mInflater = mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater

    val item_view = mInflater.inflate(R.layout.activity_job_item, parent, false)

    val job_name: MutableList<String> = arrayListOf()
    job_list.mapTo(job_name) { it["BaseSiteName"] as String }
    val nameView: TextView = item_view.findViewById(R.id.name) as TextView
    nameView.text = job_name[position]

    val job_date: MutableList<String> = arrayListOf()
    job_list.mapTo(job_date) { it["PlanDt"] as String}
    val dateView: TextView = item_view.findViewById(R.id.date) as TextView
    dateView.text = job_date[position]

    item_view.setOnClickListener{
        val intent: Intent = Intent(mContext, JobDetailActivity::class.java)
        intent.putExtra("job", job_list[position])
        mContext.startActivity(intent)
    }

    return item_view
}

}

但是,我想让列表可以刷新。我编写了以下代码来刷新列表。

override fun onRefresh() {
    Toast.makeText(this.context, "Refresh", Toast.LENGTH_SHORT).show()
    val rootView = this_inflater!!.inflate(R.layout.fragment_pending_job, this_container, false)

    val url = "something"

    val request_queue = Volley.newRequestQueue(this.context)
    val stringRequest = StringRequest(Request.Method.GET, url,
            Response.Listener<String> { response ->
                val pending_job = Gson().fromJson<ArrayList<HashMap<String, String>>>(
                        response.toString(),
                        object : TypeToken<ArrayList<HashMap<String, String>>>() {}.type
                )

                val adapter: CustomAdapter = CustomAdapter(
                        this.context,
                        pending_job
                )

                val listView = rootView.findViewById(R.id.pending_job_list) as ListView
                listView.adapter = adapter

                pending_job_list_layout.isRefreshing = false

                pending_job_list_layout.setOnRefreshListener(this)

                request_queue.stop()
            }, Response.ErrorListener { error ->
        if (error.networkResponse != null) {
            Toast.makeText(this.context, error.networkResponse.statusCode.toString(), Toast.LENGTH_SHORT).show()
        }
        request_queue.stop()
    })
    request_queue.add(stringRequest)
}

这只是再次实例化 CustomAdapter 并将其再次带到 ListView 。

当我刷新时,列表中没有任何变化。

最佳答案

在CustomAdapter类中定义一个方法UpdateData,它将接收新数据并替换旧数据

fun UpdateData(new_job_list: ArrayList<HashMap<String, String>>){
       job_list.clear()
       job_list.addAll(new_job_list)
       notifyDataSetChanged()
   }

现在,当您从 volly 获取新数据时,无需再次为 listview 设置适配器,只需使用

adapter.UpdateData(pending_job)

关于Android:无法使用 CustomAdapter 刷新 Listview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42065482/

相关文章:

android - 在 Android 库 AAR 中使用时无法找到 Volley 的字节码

android - Kotlin 协程 - 线程切换

java - 从模式中解包字节

java - Android 位图变为空

android - 如何将兄弟 View 限制为与 TextInputLayout 的 TextInputEditText 相同的高度

android - Node.js GCM 推送通知允许的 ID 数量?

android - PagedListAdapter.submitList() 在更新现有项目时表现异常

java - Volley 使用单例将访问 token 附加到每个请求

android - 使用截击将视频上传到android中的服务器

android - 在 Android Things 上手动配置网络适配器