droid_wrap::android::os

Struct Vibrator

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

操作设备上的振动器的类。如果您的进程退出,您启动的任何振动都将停止。

Implementations§

Source§

impl Vibrator

Source

pub const VIBRATION_INTENSITY_OFF: i32 = 0i32

振动强度:无振动。

Source

pub const VIBRATION_INTENSITY_LOW: i32 = 1i32

振动强度:低。

Source

pub const VIBRATION_INTENSITY_MEDIUM: i32 = 2i32

振动强度:中。

Source

pub const VIBRATION_INTENSITY_HIGH: i32 = 3i32

振动强度:高。

Source

pub const VIBRATION_EFFECT_SUPPORT_UNKNOWN: i32 = 0i32

振动效果支持:未知。 硬件未报告其支持的效果,因此我们无法确定是否支持该效果。

Source

pub const VIBRATION_EFFECT_SUPPORT_YES: i32 = 1i32

振动效果支持:支持。 该效果由底层硬件支持。

Source

pub const VIBRATION_EFFECT_SUPPORT_NO: i32 = 2i32

振动效果支持:不支持。 此效果并非底层硬件原生支持,但系统仍可播放后备振动。

Source

pub fn new() -> Self

防止从框架外部进行子类化

Source

pub fn get_default_vibration_intensity(&self) -> i32

获取给定用途的默认振动强度。

Source

pub fn get_id(&self) -> i32

返回此振动器的ID。 返回:一个非负整数,表示此服务控制的振动器的id,或者-1表示此服务未附加任何物理振动器。

Source

pub fn has_vibrator(&self) -> bool

检查硬件是否有振动器。 返回:如果硬件有振动器则返回 True,否则返回 false。

Source

pub fn has_amplitude_control(&self) -> bool

检查振动器是否具有振幅控制。 返回:如果硬件可以控制振动的振幅,则返回 True,否则返回 false。

Source

pub fn has_frequency_control(&self) -> bool

检查振动器是否具有独立的频率控制。 返回:如果硬件可以独立于振动幅度控制振动频率,则返回 True,否则返回 false。

Source

pub fn are_vibration_features_supported(&self, effect: &VibrationEffect) -> bool

检查振动器是否支持给定 VibrationEffect 的所有组件(即振动器是否能按预期播放给定效果)。如果此方法返回 true,则 VibrationEffect 应按预期播放。 如果为 false,播放 VibrationEffect 仍可能产生振动,但振动效果可能与预期大不相同。此方法汇总功能检查方法的结果,例如 hasAmplitudeControl、areAllPrimitivesSupported(int…) 等,具体取决于 VibrationEffect 实际使用的功能。 返回:如果振动器可以按预期播放给定效果,则返回 true,否则返回 false。 effect 要检查是否支持的 VibrationEffect

Source

pub fn has_external_control(&self) -> bool

使用 IExternalVibratorService 检查振动器是否可由外部服务控制。 返回:如果硬件可由外部服务控制,则返回 True,否则返回 false。

Source

pub fn get_resonant_frequency(&self) -> f32

获取振动器的共振频率(如果适用)。 返回:振动器的共振频率,如果未知、不适用或该振动器是具有不同频率的多个物理设备的组合,则返回 NaN。

Source

pub fn get_q_factor(&self) -> f32

获取振动器的 Q 因子。 返回:振动器的 Q 因子,如果未知、不适用或该振动器是具有不同 Q 因子的多个物理设备的组合,则返回 NaN。

Source

pub fn get_haptic_channel_maximum_amplitude(&self) -> f32

返回振动器使用音频触觉通道可以播放的最大振幅。这是一个正值,如果未知则为 NaN。如果返回正值 maxAmplitude,则来自音轨触觉通道的信号应在 [-maxAmplitude, maxAmplitude] 范围内。 返回:一个正值,表示设备可以从音频触觉通道播放信号的最大绝对值,如果未知则为 NaN。

Source

pub fn vibrate(&self, milliseconds: i64)

👎Deprecated: 改用 vibrate(VibrationEffect)。

在指定的时间段内持续振动。应用应处于前台才能发生振动。 milliseconds 振动的毫秒数。

Source

pub fn vibrate_effect(&self, vibe: &VibrationEffect)

使用指定效果进行振动。应用程序应处于前台才能进行振动。 vibe 描述要执行的振动的振动效果。

Source

pub fn cancel(&self)

关掉振动器。

Source

pub fn cancel_usage_filter(&self, usage_filter: i32)

取消特定类型的正在进行的振动。 usage_filter 要取消的振动类型,表示为 VibrationAttributes 的按位组合。使用值。

Source

pub fn is_vibrating(&self) -> bool

检查振动器是否正在振动。 返回:如果硬件正在振动,则返回 True,否则返回 false。

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 Debug for Vibrator

Source§

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

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

impl Deref for Vibrator

Source§

type Target = GlobalRef

The resulting type after dereferencing.
Source§

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

Dereferences the value.
Source§

impl From<&GlobalRef> for Vibrator

Source§

fn from(obj: &GlobalRef) -> Self

Converts to this type from the input type.
Source§

impl Into<GlobalRef> for &Vibrator

Source§

fn into(self) -> GlobalRef

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

impl JObjNew for Vibrator

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 Vibrator

Source§

fn java_ref(&self) -> GlobalRef

获取java对象引用。
Source§

impl JType for Vibrator

Source§

const CLASS: &'static str = "android/os/Vibrator"

java类的名称。
Source§

const OBJECT_SIG: &'static str = "Landroid/os/Vibrator;"

对象的签名描述。
Source§

type Error = Error

错误类型。
Source§

const DIM: u8 = 0u8

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

impl PartialEq for Vibrator

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 Vibrator

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.