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