From 87b36ba7998075ee90800c27446f06ff23fe800d Mon Sep 17 00:00:00 2001 From: Ieuan Walker Date: Thu, 29 Dec 2022 17:15:45 +0000 Subject: [PATCH] update --- Scr/Handler/CustomContentViewGroup.Android.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Scr/Handler/CustomContentViewGroup.Android.cs b/Scr/Handler/CustomContentViewGroup.Android.cs index d080ad5..bc18428 100644 --- a/Scr/Handler/CustomContentViewGroup.Android.cs +++ b/Scr/Handler/CustomContentViewGroup.Android.cs @@ -12,7 +12,7 @@ public CustomContentViewGroup(Context context) : base(context) { SetAccessibilityDelegate(new MyAccessibilityDelegate()); - this.Clickable = true; + this.Focusable = true; Touch += (sender, te) => { @@ -83,6 +83,7 @@ public override void OnInitializeAccessibilityNodeInfo(Android.Views.View? host, } info.ClassName = "android.widget.Button"; + info.Clickable = true; } } } \ No newline at end of file