- Expert Android Programming
- Prajyot Mainkar
- 433字
- 2021-07-08 10:29:08
The Android Support Library
Supporting multiple devices can pose issues, particularly when users expect apps to function seamlessly on every device, in the same way. This expectation rises even when users know very well that there is a significant difference in the software and hardware of the phone. While Google releases, latest updates to Android, it is not necessarily true that all OEMs follow up on this update on their smartphone. This leads to the fact that most of the users tend to use releases which are approximately 15 months old or older.
If that is held true, developers would have to compromise a lot in order to support most of their users, running several versions of Android. Fortunately, the Android team is aware of this and endeavors to provide consistent help for the developer in this regard. This is a tricky issue, especially considering the consistency of the app feature that shouldn't affect the architectural structure. Google's Android team has a strategic answer to this: The Android Support Library.
The Android Support Library is a collection of libraries, which are available on several API levels, that help developers to focus on the unique parts of their app, supporting new functionality and compatibility issues that might arise due to different versions running on different devices.
Setting up Android Support Libraries in your development environment depends entirely on what features you want to use and what range of Android platform versions you are targeting with your application. The Android Support Repository package is provided as a supplemental download to the Android SDK, and using the Android SDK manager you can grab the same.
Please follow the steps given as follows to set up the Support Library files:
- Open the Android SDK Manager option in Android Studio by selecting Tools > Android > SDK Manager.
This will open the window as selected:

In the Support Repository option, select Android Support Repository. If you have opened the standalone SDK Manager, this option would be in the Extras section, as shown in the following image:

- Click on the Install Package option
After downloading, the tool installs the Support library files to your existing Android SDK directory. To view these library files, you can navigate to the following subdirectory of your SDK: <sdk_path_on_your_system>/extras/android/m2repository/com/android/support/ directory
Android offers several support library features you can add to your project, specifically:
- v4 Support library
- v7 Support library
- Multidex Support library
- v8 Support library
- v13 Support library
- Annotations Support library
- Design Support library
- Custom Tabs Support library
Let us now take a look at what is offered by these individual support library features:
- Learn ECMAScript(Second Edition)
- 微服務(wù)設(shè)計(jì)(第2版)
- 計(jì)算思維與算法入門
- Photoshop智能手機(jī)APP UI設(shè)計(jì)之道
- Visual C++實(shí)例精通
- Python高級(jí)編程
- Hands-On JavaScript High Performance
- C語(yǔ)言程序設(shè)計(jì)
- 從Excel到Python:用Python輕松處理Excel數(shù)據(jù)(第2版)
- 深入理解Elasticsearch(原書第3版)
- PHP+Ajax+jQuery網(wǎng)站開發(fā)項(xiàng)目式教程
- QPanda量子計(jì)算編程
- Mastering Concurrency in Python
- Android編程權(quán)威指南(第4版)
- 計(jì)算機(jī)應(yīng)用基礎(chǔ)案例教程(第二版)