[]Struct jni_android_sys::android::text::method::BaseKeyListener

#[repr(transparent)]
pub struct BaseKeyListener(_);

public class BaseKeyListener

Required feature: "android-text-method-BaseKeyListener"

Methods

impl BaseKeyListener

pub fn new<'env>(
    __jni_env: &'env Env
) -> Result<Local<'env, BaseKeyListener>, Local<'env, Throwable>>
[src]

pub fn backspace<'env>(
    &'env self,
    arg0: impl Into<Option<&'env View>>,
    arg1: impl Into<Option<&'env Editable>>,
    arg2: i32,
    arg3: impl Into<Option<&'env KeyEvent>>
) -> Result<bool, Local<'env, Throwable>>
[src]

backspace

Required features: "android-text-Editable", "android-view-KeyEvent", "android-view-View"

pub fn forwardDelete<'env>(
    &'env self,
    arg0: impl Into<Option<&'env View>>,
    arg1: impl Into<Option<&'env Editable>>,
    arg2: i32,
    arg3: impl Into<Option<&'env KeyEvent>>
) -> Result<bool, Local<'env, Throwable>>
[src]

forwardDelete

Required features: "android-text-Editable", "android-view-KeyEvent", "android-view-View"

pub fn onKeyDown<'env>(
    &'env self,
    arg0: impl Into<Option<&'env View>>,
    arg1: impl Into<Option<&'env Editable>>,
    arg2: i32,
    arg3: impl Into<Option<&'env KeyEvent>>
) -> Result<bool, Local<'env, Throwable>>
[src]

onKeyDown

Required features: "android-text-Editable", "android-view-KeyEvent", "android-view-View"

pub fn onKeyOther<'env>(
    &'env self,
    arg0: impl Into<Option<&'env View>>,
    arg1: impl Into<Option<&'env Editable>>,
    arg2: impl Into<Option<&'env KeyEvent>>
) -> Result<bool, Local<'env, Throwable>>
[src]

onKeyOther

Required features: "android-text-Editable", "android-view-KeyEvent", "android-view-View"

Methods from Deref<Target = MetaKeyKeyListener>

pub fn onKeyDown<'env>(
    &'env self,
    arg0: impl Into<Option<&'env View>>,
    arg1: impl Into<Option<&'env Editable>>,
    arg2: i32,
    arg3: impl Into<Option<&'env KeyEvent>>
) -> Result<bool, Local<'env, Throwable>>
[src]

onKeyDown

Required features: "android-text-Editable", "android-view-KeyEvent", "android-view-View"

pub fn onKeyUp<'env>(
    &'env self,
    arg0: impl Into<Option<&'env View>>,
    arg1: impl Into<Option<&'env Editable>>,
    arg2: i32,
    arg3: impl Into<Option<&'env KeyEvent>>
) -> Result<bool, Local<'env, Throwable>>
[src]

onKeyUp

Required features: "android-text-Editable", "android-view-KeyEvent", "android-view-View"

pub fn clearMetaKeyState_View_Editable_int<'env>(
    &'env self,
    arg0: impl Into<Option<&'env View>>,
    arg1: impl Into<Option<&'env Editable>>,
    arg2: i32
) -> Result<(), Local<'env, Throwable>>
[src]

clearMetaKeyState

Required features: "android-text-Editable", "android-view-View"

pub fn clearMetaKeyState_long_int<'env>(
    &'env self,
    arg0: i64,
    arg1: i32
) -> Result<i64, Local<'env, Throwable>>
[src]

pub const META_ALT_LOCKED: i32[src]

pub const META_ALT_ON: i32[src]

pub const META_CAP_LOCKED: i32[src]

pub const META_SHIFT_ON: i32[src]

pub const META_SYM_LOCKED: i32[src]

pub const META_SYM_ON: i32[src]

Trait Implementations

impl AsJValue for BaseKeyListener

impl AsRef<KeyListener> for BaseKeyListener

impl AsValidJObjectAndEnv for BaseKeyListener

impl Deref for BaseKeyListener

type Target = MetaKeyKeyListener

The resulting type after dereferencing.

impl JniType for BaseKeyListener

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.