-
Notifications
You must be signed in to change notification settings - Fork 0
Home
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")!!)
}