droid_wrap::android::content

Struct ComponentName

Source
pub struct ComponentName { /* private fields */ }
Expand description

可用的特定应用组件(android.app.Activity、android.app.Service、BroadcastReceiver 或 ContentProvider)的标识符。 需要在此处封装两条信息来识别组件:组件所在的包(字符串)以及该包内的类名(字符串)。

Implementations§

Source§

impl ComponentName

Source

pub fn create_relative(pkg: String, cls: String) -> Self

创建一个新的组件标识符,其中类名可以指定为绝对名称或相对于包含包的名称。相对包名以“.”字符开头。 对于包“com.example”和类名“.app.MyActivity”,此方法将返回包“com.example”和类名“com.example.app.MyActivity”的 ComponentName。 还允许使用完全限定的类名。 返回:新的 ComponentName pkg 组件所在的包的名称 cls pkg 中实现组件的类的名称

Source

pub fn create_relative_context(pkg: &Context, cls: String) -> Self

创建一个新的组件标识符,其中类名可以指定为绝对名称或相对于包含包的名称。相对包名以“.”字符开头。 对于包“com.example”和类名“.app.MyActivity”,此方法将返回一个包含包“com.example”和类名“com.example.app.MyActivity”的 ComponentName。 还允许使用完全限定的类名。 返回:新的 ComponentName pkg 实现组件的包的上下文 cls 实现组件的 pkg 内类的名称

Source

pub fn new(pkg: String, cls: String) -> Self

创建一个新的组件标识符。 pkg 组件所在包的名称。不能为空。 cls pkg 中实现组件的类的名称。不能为空。

Source

pub fn new_context(pkg: &Context, cls: String) -> Self

根据上下文和类名创建新的组件标识符。 pkg 实现组件的包的上下文,将从中检索实际的包名称。 cls pkg 中实现组件的类的名称。

Source

pub fn get_package_name(&self) -> String

返回该组件的包名称。

Source

pub fn get_class_name(&self) -> String

返回此组件的类名。

Source

pub fn get_short_class_name(&self) -> String

返回类名,如果它是包的后缀,则返回完全限定或缩写形式(以“。”为前导)。

Source

pub fn flatten_to_short_string_static(component_name: Option<Self>) -> String

助手在可以为空的 ComponentName 引用中获取 flattenToShortString()。

Source

pub fn flatten_to_string(&self) -> String

返回一个明确描述 ComponentName 中包含的包和类名称的字符串。稍后您可以通过 unflattenFromString(String) 从此字符串中恢复 ComponentName。 返回:返回一个包含包和类名称的新字符串。这表示为包名称,用“/”连接,然后是类名称。

Source

pub fn flatten_to_short_string(&self) -> String

与 flattenToString() 相同,但如果类名是包的后缀,则缩写类名。结果仍可与 unflattenFromString(String) 一起使用。 返回:返回一个包含包和类名的新字符串。这表示为包名称,用“/”连接,然后是类名。

Source

pub fn unflatten_from_string(str: String) -> Option<Self>

从之前使用 flattenToString() 创建的字符串中恢复 ComponentName。它在第一个“/”处拆分字符串,将前面的部分作为包名称,将后面的部分作为类名称。 为了特别方便(例如,在命令行上解析组件名称时使用),如果“/”后面紧跟着“.”,则最终的类名将是包名称与“/”后面的字符串的连接。因此,“com.foo/.Blah”变为 package=“com.foo” class=“com.foo.Blah”。 返回:返回一个新的 ComponentName,其中包含在 str 中编码的包和类名称 str flattenToString() 返回的字符串。

Source

pub fn to_short_string(&self) -> String

返回此类的字符串表示形式,不带类名作为前缀。

Methods from Deref<Target = GlobalRef>§

Source

pub fn as_obj(&self) -> &JObject<'static>

Get the object from the global ref

This borrows the ref and prevents it from being dropped as long as the JObject sticks around.

Methods from Deref<Target = JObject<'static>>§

Source

pub fn as_raw(&self) -> *mut _jobject

Returns the raw JNI pointer.

Trait Implementations§

Source§

impl Comparable<ComponentName> for ComponentName

Source§

fn compare_to(&self, o: &ComponentName) -> Result<i32, <Self as JType>::Error>

将此对象与指定对象进行比较以确定顺序。如果此对象小于、等于或大于指定对象,则返回负整数、零或正整数。 实现者必须确保对于所有 x 和 y,signum(x.compareTo(y)) == -signum(y.compareTo(x))。(这意味着当且仅当 y.compareTo(x) 抛出异常时,x.compareTo(y) 才必须抛出异常。) 实现者还必须确保关系是传递的:(x.compareTo(y) > 0 && y.compareTo(z) > 0)意味着 x.compareTo(z) > 0。 最后,实现者必须确保对于所有 z,x.compareTo(y)==0 意味着 signum(x.compareTo(z)) == signum(y.compareTo(z))。 返回:负整数、零或正整数,因为此对象小于、等于或大于指定对象。 抛出: Read more
Source§

impl Debug for ComponentName

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Deref for ComponentName

Source§

type Target = GlobalRef

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl From<&GlobalRef> for ComponentName

Source§

fn from(obj: &GlobalRef) -> Self

Converts to this type from the input type.
Source§

impl Into<GlobalRef> for &ComponentName

Source§

fn into(self) -> GlobalRef

Converts this type into the (usually inferred) input type.
Source§

impl JObjNew for ComponentName

Source§

type Fields = ()

字段类型
Source§

fn _new(this: &GlobalRef, fields: Self::Fields) -> Self

从java对象创建本地对象。 this java对象引用。
Source§

fn null() -> Self
where Self: Sized, Self::Fields: Default,

创建空对象。
Source§

impl JObjRef for ComponentName

Source§

fn java_ref(&self) -> GlobalRef

获取java对象引用。
Source§

impl JType for ComponentName

Source§

const CLASS: &'static str = "android/content/ComponentName"

java类的名称。
Source§

const OBJECT_SIG: &'static str = "Landroid/content/ComponentName;"

对象的签名描述。
Source§

type Error = Error

错误类型。
Source§

const DIM: u8 = 0u8

数组维度,0表示不是数组
Source§

impl PartialEq for ComponentName

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl ToString for ComponentName

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.