I have a Activity
that is a type Dialog
when opened and I want to round the corners in Style
What I have is the following, however it does not work
<style name="formularios" parent="Base.Theme.AppCompat.Light.Dialog">
<item name="android:background">@color/formulario</item>
<item name="android:radius">@dimen/from</item>
</style>
And in dimension
dimen name="from">15dp</dimen>
My activity
has the applied theme of forms that extends from Style
.
Any ideas to implement this through XML or code?