Android Leanback Keyboard Source - android-tv

Is the source code available for the Android lean-back Keyboard?Basically the android box I am using shows its custom IME but I want to show leanback keyboard in place of that.

To my understanding Leanback Keyboard changed it's name, now it's LeanKey Keyboard, I've been lead to think this as searching Leanback Keyboard on the google play store only shows a few results with similar names. However the source code is available for it on GitHub here https://github.com/yuliskov/LeanKeyKeyboard if you were looking for the builtin android LeanbackIME keyboard that is provided by Android TV it is available on the Android Google source git here https://android.googlesource.com/platform/packages/inputmethods/LeanbackIME

Related

Audio unable to play in Aframe unless the inspector is opened

I have been working on adding background music to a Glitch project. I followed the Aframe.io documents to create a sound component and set it to automatically play upon running, however, when I try to run the project, the sound does not play automatically on my laptop. I have to open the Aframe inspector and un-pause my project for the music to begin. For some reason, I have not encountered this issue when I tried the same project on my phone. The sound played as expected once the program is up and running. I am not sure what is causing the sound to malfunction but any help is greatly appreciated. Here is the project I am working on: https://glitch.com/edit/#!/animation-animate?path=index.html%3A15%3A23
when working with sounds natively with Aframe, I had the same problem and one of the recommendations that I can give you is to play sounds with the HowlerJS sound library, which is compatible with most frameworks and also compatible with A-Frame
I share their page and the documentation, this library is very easy to use and implement to the project
https://howlerjs.com/
https://github.com/goldfire/howler.js#documentation
Autoplay audio on most modern browsers requires user interaction before enabling audio. You can put a div in front of your scene that upon click starts playing your background audio.
Check out a related SO question / answer for video autoplay that should help:
Autoplaying videosphere from A-frame is not working on any browser(Safari/Chrome)
Another user on A-Frame discord provided this example demo:
https://aframe-autoplay-background-music.glitch.me/

Is there a way to disable virtual keyboard in JavaFX for ARM?

I'm using ARM build of JavaFX from Gluon on my Raspberry Pi. It has Virtual Keyboard enabled, so every time I touch an input field -- the keyboard pops up. Is there a way to disable it? I've tried using -Dcom.sun.javafx.isEmbedded=false -Dcom.sun.javafx.touch=false -Dcom.sun.javafx.virtualKeyboard=none but that has no effect.
I need to do this to replace the default VK with a custom one, that supports different layouts and locales (and looks better, tbh). Right now both of them pop up, overlapping each other.
With JavaFX 11 -Dcom.sun.javafx.virtualKeyboard="none" works for Gluon builds. For JavaFX8 I haven't found a solution at the time except rebuilding from source.

How do I test the accessibility of my Firefox extension's toolbar button (and attached popup)?

I'm writing a Firefox (web)extension. I have a browser_action in my manifest.json, with a default_popup. I want my extension to be accessible by all users, including those with vision impairment.
So I'd like to, as I change and develop things, test what it's like to (for example) interact with this feature, using only the keyboard. How do I do this? How do I focus and thus "click" the toolbar button, without a mouse?
Ideally, without actually running special screen reader software every time.
So I'd like to, as I change and develop things, test what it's like to
(for example) interact with this feature, using only the keyboard. How
do I do this? How do I focus and thus "click" the toolbar button,
without a mouse?
You can use commands to set a keyboard shortcut.
_execute_browser_action: works like a click on the extension's browser action
You may also add commands.update() (Firefox 60+) API to let users change that keyboard shortcut.
Thanks for considering accessibility. Just to clarify, because I don't think you meant this, but you can do keyboard testing without a screen reader. Just don't use your mouse :-) Seriously.
In my current firefox, I have an address bar, the search field, then a bunch of plugins on a toolbar.
On a PC (should be similar for a Mac, but Cmd instead of Ctrl):
I can move my keyboard focus to the address bar with alt+d or ctrl+L (cmd+L)
I can move my keyboard focus to the search field with ctrl+k (cmd+k)
Interestingly enough, I could not get my focus on the toolbar. I could have sworn I could tab from the address field, to the search field, to the toolbar, but it's not working now.
If you can get your focus there, then you should be able to use the left/right arrows to move between tools and then space/enter to select the tool.
If you want to play with a screen reader, NVDA is free.

Keyboard shortcut for opening "hyperlink under the caret" in Evernote for Mac

Is there any keyboard shortcut for opening "hyperlink under the caret" in Evernote for Mac?
I often find myself in a need to open the hyperlink (or even note link) under a caret and using the mouse is not comfortable and quite slow for me.
I've found following reference for windows: https://www.shortcutworld.com/en/win/Evernote.html
There is "Open hyperlink under caret (or use Ctrl+Enter)".
Unfortunately, I couldn't find such shortcut for Mac: https://www.shortcutworld.com/en/mac/Evernote.html
Isn't this possible at all?
Evernote for Mac does not support a keyboard shortcut for opening a link.
However, you could probably make a custom automator action to open a browser from selected text.
http://blog.fosketts.net/2010/08/09/assign-keyboard-shortcut-applescript-automator-service/

Navigating QWebview in non-touch symbian phones

Our Qt application for Symbian (3rd ed FP1/Fp2, 5th ed n Symbian^3) is complete except for few fixes!
Qt doesn't seem to support key navigation in QWebview for 3rd ed phones! https://bugreports.qt.io/browse/QTWEBKIT-271
!. How can I navigate through the webpage using navigation keys in non-touch phones?
2. Is there any way to access the next clickable element (like links, login/password input areas) in the QWebview? (so that I can implement navigation by handling kb events)
Currently I have a cursor in the webview using which I click on links, scroll etc, but that's not at all user friendly :(, please help me find a solution!
If it does not work, then it's not implemented in whatever QtWebKit version you are using. The linked bug specifically mentions QtWebKit 2.1 so I guess you just have to update to that version.

Resources