Android Studio 开发依赖库集锦

Android Studio 开发依赖库集锦

Design Support Library

Design Support Library是谷歌最新推出的一个Android依赖库,其官方介绍如下:

The Design package provides APIs to support adding material design components and patterns to your apps.
The Design Support library adds support for various material design components and patterns for app developers to build upon, such as navigation drawers, floating action buttons (FAB), snackbars, and tabs.
After you download the Android Support Libraries, this library is located in the /extras/android/support/design directory. For more information on how to set up your project, follow the instructions in Adding libraries with resources.

使用Gradle添加Design Support Library的命令如下:
compile 'com.android.support:design:22.2.0'

你可能感兴趣的:(android studio)