[]Struct jni_android_sys::android::view::ActionMode

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

public class ActionMode

Required feature: "android-view-ActionMode"

Methods

impl ActionMode

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

pub fn setTag<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Object>>
) -> Result<(), Local<'env, Throwable>>
[src]

setTag

Required features: "java-lang-Object"

pub fn getTag<'env>(
    &'env self
) -> Result<Option<Local<'env, Object>>, Local<'env, Throwable>>
[src]

getTag

Required features: "java-lang-Object"

pub fn setTitle_CharSequence<'env>(
    &'env self,
    arg0: impl Into<Option<&'env CharSequence>>
) -> Result<(), Local<'env, Throwable>>
[src]

setTitle

Required features: "java-lang-CharSequence"

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

pub fn setSubtitle_CharSequence<'env>(
    &'env self,
    arg0: impl Into<Option<&'env CharSequence>>
) -> Result<(), Local<'env, Throwable>>
[src]

setSubtitle

Required features: "java-lang-CharSequence"

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

pub fn setTitleOptionalHint<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn getTitleOptionalHint<'env>(
    &'env self
) -> Result<bool, Local<'env, Throwable>>
[src]

pub fn isTitleOptional<'env>(&'env self) -> Result<bool, Local<'env, Throwable>>[src]

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

setCustomView

Required features: "android-view-View"

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

pub fn getType<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn invalidate<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn invalidateContentRect<'env>(
    &'env self
) -> Result<(), Local<'env, Throwable>>
[src]

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

pub fn finish<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn getMenu<'env>(
    &'env self
) -> Result<Option<Local<'env, Menu>>, Local<'env, Throwable>>
[src]

getMenu

Required features: "android-view-Menu"

pub fn getTitle<'env>(
    &'env self
) -> Result<Option<Local<'env, CharSequence>>, Local<'env, Throwable>>
[src]

getTitle

Required features: "java-lang-CharSequence"

pub fn getSubtitle<'env>(
    &'env self
) -> Result<Option<Local<'env, CharSequence>>, Local<'env, Throwable>>
[src]

getSubtitle

Required features: "java-lang-CharSequence"

pub fn getCustomView<'env>(
    &'env self
) -> Result<Option<Local<'env, View>>, Local<'env, Throwable>>
[src]

getCustomView

Required features: "android-view-View"

pub fn getMenuInflater<'env>(
    &'env self
) -> Result<Option<Local<'env, MenuInflater>>, Local<'env, Throwable>>
[src]

getMenuInflater

Required features: "android-view-MenuInflater"

pub fn onWindowFocusChanged<'env>(
    &'env self,
    arg0: bool
) -> Result<(), Local<'env, Throwable>>
[src]

pub const DEFAULT_HIDE_DURATION: i32[src]

public static final DEFAULT_HIDE_DURATION

pub const TYPE_FLOATING: i32[src]

public static final TYPE_FLOATING

pub const TYPE_PRIMARY: i32[src]

public static final TYPE_PRIMARY

Methods from Deref<Target = Object>

pub fn getClass<'env>(
    &'env self
) -> Result<Option<Local<'env, Class>>, Local<'env, Throwable>>
[src]

getClass

Required features: "java-lang-Class"

pub fn hashCode<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn equals<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Object>>
) -> Result<bool, Local<'env, Throwable>>
[src]

equals

Required features: "java-lang-Object"

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

pub fn notify<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn notifyAll<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

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

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

pub fn wait<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

Trait Implementations

impl AsJValue for ActionMode

impl AsValidJObjectAndEnv for ActionMode

impl Deref for ActionMode

type Target = Object

The resulting type after dereferencing.

impl JniType for ActionMode

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.