summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/Renderers/TableViewRenderer.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/TableViewRenderer.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/TableViewRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/Renderers/TableViewRenderer.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Xamarin.Forms.Platform.Android/Renderers/TableViewRenderer.cs b/Xamarin.Forms.Platform.Android/Renderers/TableViewRenderer.cs
index e4017a7e..2ac8efa6 100644
--- a/Xamarin.Forms.Platform.Android/Renderers/TableViewRenderer.cs
+++ b/Xamarin.Forms.Platform.Android/Renderers/TableViewRenderer.cs
@@ -21,6 +21,11 @@ namespace Xamarin.Forms.Platform.Android
return new Size(40, 40);
}
+ protected override AListView CreateNativeControl()
+ {
+ return new AListView(Context);
+ }
+
protected override void OnElementChanged(ElementChangedEventArgs<TableView> e)
{
base.OnElementChanged(e);
@@ -28,7 +33,7 @@ namespace Xamarin.Forms.Platform.Android
AListView listView = Control;
if (listView == null)
{
- listView = new AListView(Context);
+ listView = CreateNativeControl();
SetNativeControl(listView);
}