![]() |
Start movies directly when clicking on the movie in the playlist on Home Android Tv - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Video Support (https://forum.kodi.tv/forumdisplay.php?fid=264) +--- Thread: Start movies directly when clicking on the movie in the playlist on Home Android Tv (/showthread.php?tid=368455) Pages:
1
2
|
RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - Atreyu - 2022-06-04 I think you will have more success solving this on whatever supportspace the 'android tv' world offers. I avoid android for media as much as possible so afraid I can't be of assistance . RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - ontap - 2022-06-04 Ahhh , now you have made it more clear , I thought your issue was within kodi , not an android tv issue. RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - Andrea1998 - 2022-06-04 ok, thanks for the replies. Is it possible to modify and modify a part of the Android TV code, without using specific editing programs? The problem is figuring out which part I will have to modify and if it is possible to do it, without creating problems. RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - Atreyu - 2022-06-04 I would not expect a quick answer on this forum. Have you tried here? https://support.google.com/androidtv/community?hl=en RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - Andrea1998 - 2022-06-04 So this only affects android tv and not kodi? I use Nvidia shield TV Pro RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - Atreyu - 2022-06-04 Yes,no,ok. RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - scott967 - 2022-06-06 AFAIK, developer "koying" added the Android TV Leanback features in Kodi Leia as platform-specific Java code. You could take a look at github xbmc/tools/android/packaging/xbmc/src/ scott s. . RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - Andrea1998 - 2022-06-06 (2022-06-06, 03:46)scott967 Wrote: AFAIK, developer "koying" added the Android TV Leanback features in Kodi Leia as platform-specific Java code. You could take a look at github xbmc/tools/android/packaging/xbmc/src/ok, i looked, but i can't figure out how to use it, do you have any ideas? I use kodi matrix 19.4, is this functionality also present in version 19.4? Thanks for your help. if (getPackageManager().hasSystemFeature("android.software.leanback")) { if (Build.VERSION.SDK_INT >= VERSION_CODES.O) TvUtil.scheduleSyncingChannel(this); else { // Leanback mJsonRPC = new XBMCJsonRPC(); handler.removeCallbacks(leanbackUpdateRunnable); handler.postDelayed(leanbackUpdateRunnable, 30 * 1000); } } RE: Start movies directly when clicking on the movie in the playlist on Home Android Tv - Andrea1998 - 2022-08-01 Unfortunately I can't find a solution ... I thought it was something easier/more immediate to solve. Thanks all the same for the support provided. |