1

I can see the videos played in kindle fire has no soft key toolbar, How can I do this effect?

can I hide the soft key toolbar completely?

Wesley
  • 4,084
  • 6
  • 37
  • 60

1 Answers1

0

If you have a look at the Kindle SDK documentation - https://developer.amazon.com/sdk/fire/cx-guidelines.html#Fullscreen - you'll see there are a couple of options. One hides everything, and the other leaves a small drag-handle to quickly get the toolbar back

Offbeatmammal
  • 7,970
  • 2
  • 33
  • 52
  • I use exactly same code, but I can't hide the key toolbar. There is always a drag handler there. – Wesley Jan 24 '13 at 02:49
  • are you on the original Fire (Gingerbread) or the new ICS devices? Can you post the code you're using? On the SDK site they also have some samples you can download (working for me on my Fire HD 7") – Offbeatmammal Jan 24 '13 at 03:11
  • added your code to my test project as well as the manifest entry and it works initially, but once the screen is tapped the drag handle doesn't disappear again. will have more of a look – Offbeatmammal Jan 24 '13 at 17:05
  • drag handle doesn't automatically disappear. you have to re-apply the layout from code ... I misunderstood that bit – Offbeatmammal Jan 24 '13 at 19:20
  • I try to re-apply the layout, but how can I do it? When I touch the screen, the drag handler shows, I setOnTouchListener, but the code(set full screen) inside the listener doesn't work. Does the system took over the touch event? How can I impliment it? – Wesley Jan 25 '13 at 03:16