summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/Renderers/FormsTextView.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Android/Renderers/FormsTextView.cs')
-rw-r--r--Xamarin.Forms.Platform.Android/Renderers/FormsTextView.cs41
1 files changed, 41 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Android/Renderers/FormsTextView.cs b/Xamarin.Forms.Platform.Android/Renderers/FormsTextView.cs
new file mode 100644
index 00000000..1dc25ea9
--- /dev/null
+++ b/Xamarin.Forms.Platform.Android/Renderers/FormsTextView.cs
@@ -0,0 +1,41 @@
+using System;
+using Android.Content;
+using Android.Runtime;
+using Android.Util;
+using Android.Widget;
+
+namespace Xamarin.Forms.Platform.Android
+{
+ internal class FormsTextView : TextView
+ {
+ bool _skip;
+
+ public FormsTextView(Context context) : base(context)
+ {
+ }
+
+ public FormsTextView(Context context, IAttributeSet attrs) : base(context, attrs)
+ {
+ }
+
+ public FormsTextView(Context context, IAttributeSet attrs, int defStyle) : base(context, attrs, defStyle)
+ {
+ }
+
+ protected FormsTextView(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
+ {
+ }
+
+ public override void Invalidate()
+ {
+ if (!_skip)
+ base.Invalidate();
+ _skip = false;
+ }
+
+ public void SkipNextInvalidate()
+ {
+ _skip = true;
+ }
+ }
+} \ No newline at end of file