WindowMetrics 类

定义

有关窗口的指标,包括边界和 WindowInsets

[Android.Runtime.Register("android/view/WindowMetrics", ApiSince=30, DoNotGenerateAcw=true)]
public sealed class WindowMetrics : Java.Lang.Object
[<Android.Runtime.Register("android/view/WindowMetrics", ApiSince=30, DoNotGenerateAcw=true)>]
type WindowMetrics = class
    inherit Object
继承
WindowMetrics
属性

注解

有关窗口的指标,包括边界和 WindowInsets

这通常是从 WindowManager#getCurrentWindowMetrics()WindowManager#getMaximumWindowMetrics()获取的。

之后 android.os.Build.VERSION_CODES#UPSIDE_DOWN_CAKE,它还提供密度。 <h3>获取与密度无关的像素(DP)</h3 中的窗口维度>

虽然 #getDensity() 提供,但密度无关像素的维度也可以使用 WindowMetrics 属性进行计算,这类似于 android.content.res.Configuration#screenWidthDp

float widthInDp = windowMetrics.getBounds().width() / windowMetrics.getDensity();
            float heightInDp = windowMetrics.getBounds().height() / windowMetrics.getDensity();

此外,可以通过以下方法获取 DPI 中的密度:

float densityDp = DisplayMetrics.DENSITY_DEFAULT * windowMetrics.getDensity();

</p>

适用于 . 的 android.view.WindowMetricsJava 文档

本页的某些部分是根据 Android 开放源代码项目创建和共享的工作进行的修改,并根据 Creative Commons 2.5 属性许可证中所述的术语使用。

构造函数

WindowMetrics(Rect, WindowInsets)

此成员已弃用。

WindowMetrics(Rect, WindowInsets, Single)

用于创建实例的 WindowMetrics 构造函数。

属性

Bounds

返回与此窗口关联的区域边界或 android.annotation.UiContext

Class

返回此 Object的运行时类。

(继承自 Object)
Density

返回与此窗口关联的区域密度,或者 android.annotation.UiContext,该区域使用与该窗口相同的单位 android.util.DisplayMetrics#density

Handle

基础 Android 实例的句柄。

(继承自 Object)
JniIdentityHashCode

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
JniPeerMembers

有关窗口的指标,包括边界和 WindowInsets

PeerReference

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
ThresholdClass

此 API 支持 Mono for Android 基础结构,不打算直接从代码使用。

(继承自 Object)
ThresholdType

此 API 支持 Mono for Android 基础结构,不打算直接从代码使用。

(继承自 Object)
WindowInsets

返回 WindowInsets 与此窗口或 android.annotation.UiContext.

方法

Clone()

创建并返回此对象的副本。

(继承自 Object)
Dispose()

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
Dispose(Boolean)

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
Equals(Object)

指示其他对象是否“等于”此对象。

(继承自 Object)
GetHashCode()

返回对象的哈希代码值。

(继承自 Object)
JavaFinalize()

当垃圾回收确定不再引用该对象时,由对象上的垃圾回收器调用。

(继承自 Object)
Notify()

唤醒正在等待此对象的监视器的单个线程。

(继承自 Object)
NotifyAll()

唤醒正在等待此对象的监视器的所有线程。

(继承自 Object)
SetHandle(IntPtr, JniHandleOwnership)

设置 Handle 属性。

(继承自 Object)
ToArray<T>()

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
ToString()

返回对象的字符串表示形式。

(继承自 Object)
UnregisterFromRuntime()

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
Wait()

使当前线程等待,直到唤醒它,通常是通过 em 通知/em> 或 <em>interrupted</em>。<><

(继承自 Object)
Wait(Int64)

使当前线程等待直到唤醒,通常是通过 <em>通知</em> 或 <em interrupted</em>>,或直到经过一定数量的实时。

(继承自 Object)
Wait(Int64, Int32)

使当前线程等待直到唤醒,通常是通过 <em>通知</em> 或 <em interrupted</em>>,或直到经过一定数量的实时。

(继承自 Object)

显式接口实现

IJavaPeerable.Disposed()

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
IJavaPeerable.DisposeUnlessReferenced()

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
IJavaPeerable.Finalized()

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
IJavaPeerable.JniManagedPeerState

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
IJavaPeerable.SetJniIdentityHashCode(Int32)

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates)

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)
IJavaPeerable.SetPeerReference(JniObjectReference)

有关窗口的指标,包括边界和 WindowInsets

(继承自 Object)

扩展方法

JavaCast<TResult>(IJavaObject)

执行 Android 运行时检查的类型转换。

JavaCast<TResult>(IJavaObject)

有关窗口的指标,包括边界和 WindowInsets

GetJniTypeName(IJavaPeerable)

有关窗口的指标,包括边界和 WindowInsets

适用于