When following this Android tutorial using AppCompat V7 to get the new Tool Bar work, the android.support.v7.widget.Toolbar
supports android:elevation
on SDK's < Lollipop. This is because they use android.support.v7.widget.Toolbar
and not Toolbar
.
Is there equivalent for button? Something like android.support.v7.widget.Button
? (This one not exist) Or any other workaround in the kind of overlaying the Button in some view supporting elevation? (I don't want implementation of creating custom shapes with gradients for look & feel of elevation).
Thanks,