Revision control
Copy as Markdown
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
package org.mozilla.tv.firefox.ext
import android.view.View
import org.mozilla.geckoview.GeckoView
/**
* When view gains focus, its child(ren) views may gain focus with undefined View_ID
* due to programmatic declaration
*/
fun View.validateKnownViewById(): Int {
if (this.id == View.NO_ID) {
when (this) {
is GeckoView -> return ENGINE_VIEW_ID
else -> {
// TODO: need sentry/telemetry to keep track of what views without IDs get passed in
}
}
}
return this.id
}