Please enable JavaScript.
Coggle requires JavaScript to display documents.
Android (Support Lib (Standalone Components (Vector Drawable Library,…
-
-
-
Support Lib
V4
v4 core-utils library
PermissionChecker, AsyncTaskLoader
v4 core-ui library
ViewPager, NestedScrollView, and ExploreByTouchHelper
v4 media-compat library
Backports portions of the media framework, including MediaBrowser and MediaSession.
-
-
Standalone Components
-
-
-
Design Support Library
The Design Support library adds support for various material design components
-
-
-
-
-
V7
-
-
-
-
-
v7 appcompat library
This library adds support for the Action Bar user interface design pattern. This library includes support for material design user interface implementations.
v7 Preference Support Library
The preference package provides APIs to support adding preference objects, such as CheckBoxPreference and ListPreference, for users to modify UI settings.
-
v13 Support Library
This library adds support for the Fragment user interface pattern with the (FragmentCompat) class and additional fragment support classes.
-
-
View
-
invalidate() -> calls onDraw(), but does not change size
requestLayout() -> remeasures view and its children
calls onMeasure() and onLayout()
- does not guarantee invalidate() call
- all the way up the line for the parent views.
forceLayout() -> doesn't calls requestLayout() only changes size and calls onDraw() of specified view
- Will not bubble in the tree of views
-