Most visited

Recently visited

Added in API level 23

VoiceInteractionSession.Insets

public static final class VoiceInteractionSession.Insets
extends Object

java.lang.Object
   ↳ android.service.voice.VoiceInteractionSession.Insets


有关输入法UI的哪些有趣部分出现的信息。

Summary

Constants

int TOUCHABLE_INSETS_CONTENT

touchableInsets选项:可以触摸内容 touchableInsets内的区域。

int TOUCHABLE_INSETS_FRAME

touchableInsets选项:可以触摸整个窗框。

int TOUCHABLE_INSETS_REGION

touchableInsets选项:可以触摸由 touchableRegion指定的区域。

Fields

public final Rect contentInsets

这是主要内容的用户界面的一部分。

public int touchableInsets

确定窗口的哪个区域是用户可触摸的。

public final Region touchableRegion

这是可触摸的用户界面区域。

Public constructors

VoiceInteractionSession.Insets()

Inherited methods

From class java.lang.Object

Constants

TOUCHABLE_INSETS_CONTENT

Added in API level 23
int TOUCHABLE_INSETS_CONTENT

touchableInsets选项:可以触摸内容 touchableInsets内的区域。

常数值:1(0x00000001)

TOUCHABLE_INSETS_FRAME

Added in API level 23
int TOUCHABLE_INSETS_FRAME

touchableInsets选项:可以触摸整个窗框。

常量值:0(0x00000000)

TOUCHABLE_INSETS_REGION

Added in API level 23
int TOUCHABLE_INSETS_REGION

touchableInsets选项:可以触摸由 touchableRegion指定的区域。

常量值:3(0x00000003)

Fields

contentInsets

Added in API level 23
Rect contentInsets

这是主要内容的用户界面的一部分。 它用于确定所需的基本空间,以调整/平移后面的应用程序。 假设这个插入的内容没有太大的改变,因为任何改变都会导致应用程序完全调整大小/平移。 该值相对于输入法窗口的上边缘。

touchableInsets

Added in API level 23
int touchableInsets

确定窗口的哪个区域是用户可触摸的。 可能之一: TOUCHABLE_INSETS_FRAMETOUCHABLE_INSETS_CONTENT ,或TOUCHABLE_INSETS_REGION

touchableRegion

Added in API level 23
Region touchableRegion

这是可触摸的用户界面区域。 touchableInsets设置为TOUCHABLE_INSETS_REGION时使用它。 该区域应该相对于窗口框架的原点进行指定。

Public constructors

VoiceInteractionSession.Insets

Added in API level 23
VoiceInteractionSession.Insets ()

Hooray!