我怎么知道课程的最低api级别是多少?

时间:2015-07-29 23:27:58

标签: android

我如何知道我使用的类是否与旧版本的android兼容。例如,我想使用recyclerview(https://developer.android.com/reference/android/support/v7/widget/RecyclerView.html),我正在为Android 4.3版开发。阅读课程并没有说明它支持的Android版本。怎么能找到(一般来说对于任何一个班级)?

3 个答案:

答案 0 :(得分:4)

通常,支持库的版本指示最低API级别:

  • 支持v 4 for API Level> = 4
  • 支持v 7 API级别> = 7

如上所述on the documentation

答案 1 :(得分:2)

对于支持库,支持的版本包含在软件包名称中: v7

http://developer.android.com/tools/support-library/features.html

对于一般的课程,您必须检查文档,即。 Toolbar:在API级别21中添加。

答案 2 :(得分:0)

您正在使用v7支持库中的功能。 v7支持库旨在与Android 2.1(API级别7)及更高版本一起使用。有关其他版本的支持库的详细信息,请参阅此链接。 http://www.tutorialspoint.com/android/android_support_library.htm

另请参阅此页面以获取更多信息:
https://developer.android.com/tools/support-library/index.html