Android 设计支持库
Android Design Support Library
在 google 搜索 android 设计支持库后,我找到了 this。
它指出:"Android Design Support Library brings a number of material design components that are compatiable [sic] with all Android 2.1 or higher devices."
我想知道这是否意味着 android 设计支持库只能用于棒棒糖之前的设备,或者它是否与在 [=23= 中使用 material 设计相同]-21 现在。
感谢您的帮助!
设计支持库仅提供Material设计引入的部分组件。
要使用 Material 设计主题,您必须使用 AppCompat 支持库(或将您的 minSdkVersion
设置为 21
或更高)。
因此,即使您正在为 API 21+ 开发,您仍然无法访问这些组件(浮动操作按钮、Snackbar、NavigationView 等),因为它们不包含在Android.
您可以在 official announcement 中获得有关设计支持库的更多信息。
在 google 搜索 android 设计支持库后,我找到了 this。
它指出:"Android Design Support Library brings a number of material design components that are compatiable [sic] with all Android 2.1 or higher devices."
我想知道这是否意味着 android 设计支持库只能用于棒棒糖之前的设备,或者它是否与在 [=23= 中使用 material 设计相同]-21 现在。
感谢您的帮助!
设计支持库仅提供Material设计引入的部分组件。
要使用 Material 设计主题,您必须使用 AppCompat 支持库(或将您的 minSdkVersion
设置为 21
或更高)。
因此,即使您正在为 API 21+ 开发,您仍然无法访问这些组件(浮动操作按钮、Snackbar、NavigationView 等),因为它们不包含在Android.
您可以在 official announcement 中获得有关设计支持库的更多信息。