Hallo!
I use round corners for all text controls in the application:
[IMG]http://i68.tinypic.com/250hxkj.png[/IMG]
For doing this I created renderes for Entry and Picker controls (in Android part of the solution) and overrided OnElementChanged method:
base.OnElementChanged( args );
if ( Control != null )
{
GradientDrawable gd = new GradientDrawable();
gd.SetColor(Color.Transparent.ToAndroid());
gd.SetCornerRadius (10);
gd.SetStroke (2, Color.Gray.ToAndroid());
this.Control.SetBackgroundDrawable(gd);
}
When I did the same for SfAutoComplete control it does not work as expected (it renders both rectangle and round corners):
[IMG]http://i64.tinypic.com/29uzqlv.jpg[/IMG]
Please suggest what should be done to have the same style as entry and picker.