I am trying to make a custom control based on a Xamarin Forms label. The idea is that when you click the control, execute an action, this I already did with GestureRecognizers.
But since some of our users use a keyboard, I need this custom control to be Focusable, and I need to detect when it has the focus to make changes in its features.
How can I achieve that?
I'm using Xamarin Forms, and I'm mainly interested in implementing Android.