meitar reihan
meitar reihan

Reputation: 36

how i can use lollipop features on API 15

I have 2 questions:

  1. Is it possible to use the material in API 15?
  2. If yes so how can I do this?

I Mean to use android:elevation and more like.

Upvotes: 0

Views: 275

Answers (1)

Gabriele Mariotti
Gabriele Mariotti

Reputation: 364005

  1. 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:

Upvotes: 1

Related Questions