1

I developed an application that has different pages, the first page contains some buttons to navigate to other pages I run it in my mobile, it works fine, and I run it on my tv (Andoird Tv), it runs but I can't click on buttons to navigate to others page by REMOTE CONTROL

How can I handle keys remote control in my app Xamarin forms

Thank's

khaloud1980
  • 43
  • 1
  • 7
  • go through this controllers to control through remote control https://developer.android.com/training/tv/start/controllers – logeshpalani31 Jan 19 '20 at 12:18
  • @khaloud1980, there are one thread that may be helpful to you:https://stackoverflow.com/questions/45963749/using-remote-control-for-android-tv-application – Cherry Bu - MSFT Jan 20 '20 at 06:07

1 Answers1

-1
  1. Press tab key to make your Button focused.
  2. Then you can use REMOTE CONTROL to switch focus and click.
Jim
  • 489
  • 5
  • 11
  • I see MAUI in preview version seems solved this problem. It can select button by Dpad. So let's wait.... – Jim Mar 19 '21 at 09:47