I must be confused, I thought the V4 support library is supposed to help older devices to have newer API's, how come there is not equivalent ViewPager class if I do not use the V4 Support library?
Asked
Active
Viewed 259 times
1 Answers
1
The support library is not exclusively for compatibility with newer APIs. Some of the features (e.g. ViewPager
, DrawerLayout
, LocalBroadcastManager
) are only present there.
As for "why", it's hard to say... I guess they wanted to make those widgets available independently of an Android release.

matiash
- 54,791
- 16
- 125
- 154
-
Thats crazy, they are hiding a feature inside a compatibility package. And when people wants that feature they have to include that package. – mskw Jul 19 '14 at 17:36