Req android / edit XML for some change
#1
hi everybody,
First of all sorry for my poor english
 i'm trying to change some things  in the epg guide,

i'm on android TV MI Box and i can't go in the bottom left corner option button to change groups channel,
i'd like to be able to change groups using simply left or right on the remote (don't need to see the entiere journey epg channel)

 i try to create a remote.xml  in  Android/data/org.xbmc.kodi/files/.kodi/userdata/

I admit I do not really know what I'm doing

 <?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <TVGuide>
    <remote>
      <forward>NextChannelGroup</forward>
      <reverse>PreviousChannelGroup</reverse>
    </remote>
  </TVGuide>
</keymap>

for more infos the mibox's remote is a bluetooth device and it looks like this
Image
thanks
Reply
#2
What skin are you using ? What happens when you long press on OK whilst in tv guide ?
Reply
#3
I'm using estuary and a long prends i Can
Load Channel
Infos
Find same
go on top
Go box
Go go the end
Reply
#4
Nobody Can help me ?
Reply
#5
You say you have put your remote.xml in your userdata directory, but I think you will find that in the userdata directory is a directory named keymaps and your remote.xml should go in there. Looking at the picture of your remote though, it does not appear to have FFwd and Rew buttons and those are the ones your remote.xml is re-mapping. Given that your remote has very few buttons available, re-mapping two of them might be rather difficult.  From the picture, I think I'd be inclined to try and remap the volume button to switch groups, just in that window.

Code:
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <TVGuide>
    <remote>
      <volumeplus>NextChannelGroup</volumeplus>
      <volumeminus>PreviousChannelGroup</volumeminus>
    </remote>
  </TVGuide>
</keymap>
Learning Linux the hard way !!
Reply
#6
Thank u very much, i'm gonna truc this
Reply
#7
(2018-10-08, 10:34)black_eagle Wrote: You say you have put your remote.xml in your userdata directory, but I think you will find that in the userdata directory is a directory named keymaps and your remote.xml should go in there. Looking at the picture of your remote though, it does not appear to have FFwd and Rew buttons and those are the ones your remote.xml is re-mapping. Given that your remote has very few buttons available, re-mapping two of them might be rather difficult.  From the picture, I think I'd be inclined to try and remap the volume button to switch groups, just in that window.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <TVGuide>
    <remote>
      <volumeplus>NextChannelGroup</volumeplus>
      <volumeminus>PreviousChannelGroup</volumeminus>
    </remote>
  </TVGuide>
</keymap>
so i tried every thing but doesn't work.
i aslo tried this, but not better

<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <TVGuide>
    <universalremote>
      <obc61570>NextChannelGroup</obc61570>
      <obc61571>PreviousChannelGroup</obc61571>
    </universalremote>
  </TVGuide>
</keymap>

and this

<?xml version="1.0" encoding="UTF-8"?>
<keymap>
  <TVGuide>
    <android_virtual-remote>
      <right_stick>NextChannelGroup</right_stick>
      <left_stick>PreviousChannelGroup</left_stick>
    </android_virtual-remote>
  </TVGuide>
</keymap>
Reply
#8
still need help Sad
Reply

Logout Mark Read Team Forum Stats Members Help
android / edit XML for some change0