4
I’m having a little doubt, what’s the difference between a Listactivity and a Listview ?
4
I’m having a little doubt, what’s the difference between a Listactivity and a Listview ?
8
First I advise you to study the difference between Activity
and View
, because they are absolutely different things. After that you will realize that ListView
is a type of implementation of View
, more specifically of ViewGroup
, which allows displaying views in list form.
Already ListActivity
is a Activity
but already has mechanisms to facilitate the use of lists such as the ListView
.
Access the documentation of Listview and Listactivity for more details.
Browser other questions tagged android
You are not signed in. Login or sign up in order to post.