I want to use an arrayadapter in listview
# android
s
I want to use an arrayadapter in listview
g
My advice: don’t use listview, only recyclerview
s
why ?
g
Because RecyclerView is much better replacement for listview
b
Exactly
s
🤗 🤔 🤔 I'll give a chance to recyclerview 😄
g
of course, in some cases ListView can be the only option (you use some legacy code, or legacy third party dependency, or cannot use support library dependencies), but for all other cases just use RecyclerView
b
If you still want to use listview, i found this: http://scottmmjackson.com/learning-kotlin-simple-listview-adapter/
s
Ok now Im going to change listview to recyclerview
👍 1
Thanks all