Hello. Sorry for my english.
I'm using the next code for "roundering the corner" of a Label and it works fine but in Android 10 does not work, the corner is flat
The Manifest is set as "<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="30"/>"
Should I change something in the Manifest?
Thank you all!
I'm using the next code for "roundering the corner" of a Label and it works fine but in Android 10 does not work, the corner is flat
B4X:
Dim l_din_redondeocolor(2) As Int
l_din_redondeocolor(0)=Colors.Transparent
l_din_redondeocolor(1)=Colors.Transparent
Dim din_redondeo As GradientDrawable
din_redondeo.Initialize("TL_BR",l_din_redondeocolor)
din_redondeo.CornerRadius = 100dip
MyLabel.Background=din_redondeo
The Manifest is set as "<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="30"/>"
Should I change something in the Manifest?
Thank you all!