When to use support library

前端 未结 4 514
失恋的感觉
失恋的感觉 2021-02-07 10:38

I am confused on the purpose of the Android support library and when it is needed. It is my understanding that the major plus of using the support library is for Android to impl

4条回答
  •  醉话见心
    2021-02-07 10:51

    There is different version of the support library because each version contains new features not available in the previous ones.

    On this page you can see each version with the modifications included. http://developer.android.com/tools/support-library/index.html

    The purpose of this support library it to give you access to features that the version you are targeting doesn't include. Is there anything in the latest API that you want to use but that the version you are targeting doesn't include ? if yes then you have to include the latest version of the support library (check before on the page above that the support library include what you need).

提交回复
热议问题