summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/AppCompat/ViewRenderer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Android/AppCompat/ViewRenderer.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/AppCompat/ViewRenderer.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Android/AppCompat/ViewRenderer.cs b/Xamarin.Forms.Platform.Android/AppCompat/ViewRenderer.cs
new file mode 100644
index 00000000..3c869216
--- /dev/null
+++ b/Xamarin.Forms.Platform.Android/AppCompat/ViewRenderer.cs
@@ -0,0 +1,7 @@
+namespace Xamarin.Forms.Platform.Android.AppCompat
+{
+ public abstract class ViewRenderer<TView, TControl> : Android.ViewRenderer<TView, TControl> where TView : View where TControl : global::Android.Views.View
+ {
+ protected abstract TControl CreateNativeControl();
+ }
+} \ No newline at end of file