summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs
diff options
context:
space:
mode:
authorMarcus Lum <marcusl@gmail.com>2016-08-30 13:37:07 -0400
committerJason Smith <jason.smith@xamarin.com>2016-08-30 10:37:07 -0700
commit61f34d113c9f6941194a6ed3101f54158de722a3 (patch)
treeb6211a4e1a4dba6ec40aad3823a795387e851815 /Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs
parent5b85aafcd671f5e8745cf52339c20378f91cb748 (diff)
downloadxamarin-forms-61f34d113c9f6941194a6ed3101f54158de722a3.tar.gz
xamarin-forms-61f34d113c9f6941194a6ed3101f54158de722a3.tar.bz2
xamarin-forms-61f34d113c9f6941194a6ed3101f54158de722a3.zip
Allow Custom Android MapRenderers to override the default MapView options (#285)
* Allow Custom Android MapRenderers to override the default MapView options * Larger effort to use CreateNativeControl () everywhere instead of just in the Android AppCompat renderers.
Diffstat (limited to 'Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs b/Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs
index 0be9740c..c544a239 100644
--- a/Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs
+++ b/Xamarin.Forms.Platform.Android/Renderers/LabelRenderer.cs
@@ -67,12 +67,17 @@ namespace Xamarin.Forms.Platform.Android
return result;
}
+ protected override TextView CreateNativeControl()
+ {
+ return new FormsTextView(Context);
+ }
+
protected override void OnElementChanged(ElementChangedEventArgs<Label> e)
{
base.OnElementChanged(e);
if (_view == null)
{
- _view = new FormsTextView(Context);
+ _view = (FormsTextView)CreateNativeControl();
_labelTextColorDefault = _view.TextColors;
SetNativeControl(_view);
}