1

I am creating a simple application for my android tv box, which uses a webview object to show some streaming urls and choose beetween them with PGup and PGdown of a remote control (an hardware keyboard).

I am overriding method onKeyUp, but unfortunately my app seem not to detect any key press. This is some code excerpt:

package com.dm.tutorialwebview

import android.os.Bundle
import android.support.v7.app.AppCompatActivity
import android.view.KeyEvent
import android.view.Menu
import android.webkit.WebChromeClient
import android.webkit.WebView
import android.webkit.WebViewClient
import android.util.Log
import android.view.MotionEvent


class MainActivity : AppCompatActivity() {

    var webview: WebView? = null
    data class Channel(val number: Int, val name:String, val url: String )

    object ChannelList {
        private val list = mutableListOf<Channel>()
        private var curChannel: Int = 0
[..]
    }

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_main)

        ChannelList.addItem(Channel(1,"channel1","https://...3"))
        ChannelList.addItem(Channel(2,"channel2","https://..."))
        ChannelList.addItem(Channel(3,"channel3","https://..."))

        webview = findViewById(R.id.myweb)
        webview!!.webViewClient = WebViewClient()
        webview!!.settings.javaScriptEnabled = false
        webview!!.webChromeClient = WebChromeClient()
        webview!!.settings.domStorageEnabled = true
        webview!!.settings.builtInZoomControls = false     
        webview!!.settings.setSupportZoom(false)           
        webview!!.overScrollMode = WebView.OVER_SCROLL_NEVER
        webview!!.settings.useWideViewPort = true
        webview!!.setInitialScale(1)

        webview!!.loadUrl(ChannelList.getChannelUrl())

    }

    override fun onKeyUp(keyCode: Int, event: KeyEvent): Boolean {
        Log.i("TAG", "onKeyUp is been called");
        return when (keyCode) {
            KeyEvent.KEYCODE_PAGE_UP -> {
                ChannelList.nextChannel()
                webview!!.loadUrl(ChannelList.getChannelUrl())
                true
            }
            KeyEvent.KEYCODE_PAGE_DOWN -> {
                ChannelList.prevChannel()
                webview!!.loadUrl(ChannelList.getChannelUrl())
                true
            }
            KeyEvent.KEYCODE_1 -> {
                ChannelList.setChannel(1)
                webview!!.loadUrl(ChannelList.getChannelUrl())
                true
            }
            else -> super.onKeyUp(keyCode, event)
        }

    }


}

Method onKeyUp doesn't seem to be triggered at all. Any hints on what could be wrong with this code?

Thanks and regards

kekk0
  • 47
  • 7
  • I am not sure but i think you can override dispatchKeyEvent() in your activity. put some log in it to check if you can capture event in this one – Ashwini Saini Feb 11 '21 at 13:25
  • Thanks, dispatchKeyEvent() seems to work. Is there a way to increase polling interval? When pressing pageUP it goes several pages ahead. thank you. – kekk0 Feb 11 '21 at 15:04

1 Answers1

1

Thanks @Ashwini-violet, I replaced onKeyUp with dispathKeyEvent.

I used a workaround to limit inputs to one every 250ms; not very polite but it's working.

    var lastclick : Long = 0
    var keyDelay : Int = 250        
    
    [..]

    override fun dispatchKeyEvent(event: KeyEvent?): Boolean {
    return when (event!!.keyCode) {
        KeyEvent.KEYCODE_PAGE_UP , KeyEvent.KEYCODE_DPAD_UP -> {
            if ((SystemClock.currentThreadTimeMillis() - lastclick) < keyDelay) true
            else {
                ChannelList.nextChannel()
                webview!!.clearHistory()
                webview!!.clearCache(true)
                showChannelName()
                webview!!.loadUrl(ChannelList.getChannelUrl())
                lastclick = SystemClock.currentThreadTimeMillis()
                true
            }
        }
kekk0
  • 47
  • 7