0
Today using a Fragment to solve a problem, I saw that there is a class called ListFragment
but what does it do? What’s the difference with a Fragment
?
When should I use the ListFragment
when should I use the Fragment
.
0
Today using a Fragment to solve a problem, I saw that there is a class called ListFragment
but what does it do? What’s the difference with a Fragment
?
When should I use the ListFragment
when should I use the Fragment
.
0
Listfragment is basically a Fragment with a Listview. You have some methods like getListView() and getListAdapter() to make your life easier.
It depends on what you need but most of the time I’d use a Fragment with Listview.
Source: https://developer.android.com/reference/android/support/v4/app/ListFragment.html
Browser other questions tagged java android android-fragment
You are not signed in. Login or sign up in order to post.