Adding items on ListView (simple?)
Clash Royale CLAN TAG#URR8PPP
Adding items on ListView (simple?)
Is there a way to add items on listview without adding a class or doing something really complicated? I searched everywhere but they seem so complicated. So help me please!
2 Answers
2
ListView is designed as AdapterView to reduce memory usage and to make it faster. You cannot add views to a ListView directly, you have to use you own Adapter.
You can you use ScrollView to add a few views and scroll it like ListView does.
It's not as complicated as you think. You need:
Lots of tutorial on the web, one for example
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.