class SystemEngineView : FrameLayout, EngineView, OnLongClickListener
(source)
WebView-based implementation of EngineView.
class ImageHandler : Handler |
SystemEngineView(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0)
WebView-based implementation of EngineView. |
fun onDestroy(): Unit
To be called in response to Lifecycle.Event.ON_DESTROY. See EngineView implementations for details. |
|
fun onLongClick(view: View?): Boolean |
|
fun onPause(): Unit
To be called in response to Lifecycle.Event.ON_PAUSE. See EngineView implementations for details. |
|
fun onResume(): Unit
To be called in response to Lifecycle.Event.ON_RESUME. See EngineView implementations for details. |
|
fun render(session: EngineSession): Unit
Render the content of the given session. |
open fun asView(): View
Convenience method to cast the implementation of this interface to an Android View object. |
|
open fun onCreate(): Unit
To be called in response to Lifecycle.Event.ON_CREATE. See EngineView implementations for details. |
|
open fun onStart(): Unit
To be called in response to Lifecycle.Event.ON_START. See EngineView implementations for details. |
|
open fun onStop(): Unit
To be called in response to Lifecycle.Event.ON_STOP. See EngineView implementations for details. |
val View.isLTR: Boolean
Is the horizontal layout direction of this view from Left to Right? |
|
val View.isRTL: Boolean
Is the horizontal layout direction of this view from Right to Left? |
fun ViewGroup.forEach(action: (View) -> Unit): Unit
Performs the given action on each View in this ViewGroup. |
|
fun View.hideKeyboard(): Unit
Hides the soft input window. |
|
fun View.isGone(): Boolean
Returns true if this view's visibility is set to View.GONE. |
|
fun View.isInvisible(): Boolean
Returns true if this view's visibility is set to View.INVISIBLE. |
|
fun View.isVisible(): Boolean
Returns true if this view's visibility is set to View.VISIBLE. |
|
fun View.showKeyboard(flags: Int = InputMethodManager.SHOW_IMPLICIT): Unit
Tries to focus this view and show the soft input window for it. |