I am new in Android. What is the main use FragmentPagerAdapter
in Android, Is this same as like BaseAdapter
??
Where FragmentPagerAdapter
is used and how does ??
I am new in Android. What is the main use FragmentPagerAdapter
in Android, Is this same as like BaseAdapter
??
Where FragmentPagerAdapter
is used and how does ??
FragmentPagerAdapter
is one of the PagerAdapters
provided by the framework to use it in combination with ViewPager
. In simple words, it provides the Fragments
to be displayed as pages of the ViewPager
.
In the other hand, BaseAdapter
is the base class for all Adapters
that will deal with ListViews
.