I would like to use AppCompat v22
to style my LinearLayout
so that it looked like button. I set its style like this:
<LinearLayout style="@style/Base.Widget.AppCompat.Button"
....
</LinearLayout>
and in app theme I have: colorButtonNormal
property set.
After styling LinearLayout
looks like button on devices running Lollipop but not on older versions.
Question is - what needs to be set to make LinearLayout
look like button on older Android versions too by using AppCompat v22
?