Reputation: 36
I have 2 questions:
I Mean to use android:elevation and more like.
Upvotes: 0
Views: 275
Reputation: 364005
- Is it possible to use the material in API 15? I Mean to use android:elevation and more lik
It depends.
You can use some wigdets and views, like Toolbar adding the AppCompat Support Library or CollapsingToolbarLayout, SnackBar, FloatingActionButton adding the new Design Support Library.
But there are some features that can work only with API 21+.
For example android:elevation (shadows) or RippleDrawable which were introduced with Android 5.0 and not are in the support libraries.
2 .If yes so how can I do this?
You can start from:
adding the AppCompat support library:
adding the Design support library
Upvotes: 1