Skip to content
Siddhant edited this page Mar 28, 2018 · 9 revisions

override fun bindView(view: View?, p1: Context?, cursor: Cursor?){

    var tvName=view?.findViewById<TextView>(R.id.tvName)
    var text=cursorz?.getColumnIndex(cursor?.getColumnName(1)!!)
    Log.d("kk-->>",text.toString())
    tvName?.text=cursor?.getString(cursor?.getColumnIndexOrThrow("NAME")!!)

}

Clone this wiki locally