inputmethod

package
v0.0.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 29, 2026 License: CC0-1.0 Imports: 6 Imported by: 0

Documentation ¶

Overview ¶

Package inputmethod provides Go bindings for android.view.inputmethod.

Index ¶

Constants ¶

View Source
const (
	Creator                                        = consts.Creator
	CursorUpdateFilterCharacterBounds              = consts.CursorUpdateFilterCharacterBounds
	CursorUpdateFilterEditorBounds                 = consts.CursorUpdateFilterEditorBounds
	CursorUpdateFilterInsertionMarker              = consts.CursorUpdateFilterInsertionMarker
	CursorUpdateFilterTextAppearance               = consts.CursorUpdateFilterTextAppearance
	CursorUpdateFilterVisibleLineBounds            = consts.CursorUpdateFilterVisibleLineBounds
	CursorUpdateImmediate                          = consts.CursorUpdateImmediate
	CursorUpdateMonitor                            = consts.CursorUpdateMonitor
	GetExtractedTextMonitor                        = consts.GetExtractedTextMonitor
	GetTextWithStyles                              = consts.GetTextWithStyles
	HandwritingGestureResultCancelled              = consts.HandwritingGestureResultCancelled
	HandwritingGestureResultFailed                 = consts.HandwritingGestureResultFailed
	HandwritingGestureResultFallback               = consts.HandwritingGestureResultFallback
	HandwritingGestureResultSuccess                = consts.HandwritingGestureResultSuccess
	HandwritingGestureResultUnknown                = consts.HandwritingGestureResultUnknown
	HandwritingGestureResultUnsupported            = consts.HandwritingGestureResultUnsupported
	InputContentGrantReadUriPermission             = consts.InputContentGrantReadUriPermission
	FlagSelecting                                  = consts.FlagSelecting
	FlagSingleLine                                 = consts.FlagSingleLine
	CodeCancelled                                  = consts.CodeCancelled
	CodeFailed                                     = consts.CodeFailed
	CodeSuccess                                    = consts.CodeSuccess
	CodeUnsupported                                = consts.CodeUnsupported
	FlagCharacterLinefeed                          = consts.FlagCharacterLinefeed
	FlagCharacterPunctuation                       = consts.FlagCharacterPunctuation
	FlagCharacterWhitespace                        = consts.FlagCharacterWhitespace
	FlagLineIsRtl                                  = consts.FlagLineIsRtl
	ConnectionlessHandwritingErrorNoTextRecognized = consts.ConnectionlessHandwritingErrorNoTextRecognized
	ConnectionlessHandwritingErrorOther            = consts.ConnectionlessHandwritingErrorOther
	ConnectionlessHandwritingErrorUnsupported      = consts.ConnectionlessHandwritingErrorUnsupported
	ImeActionDone                                  = consts.ImeActionDone
	ImeActionGo                                    = consts.ImeActionGo
	ImeActionNext                                  = consts.ImeActionNext
	ImeActionNone                                  = consts.ImeActionNone
	ImeActionPrevious                              = consts.ImeActionPrevious
	ImeActionSearch                                = consts.ImeActionSearch
	ImeActionSend                                  = consts.ImeActionSend
	ImeActionUnspecified                           = consts.ImeActionUnspecified
	ImeFlagForceAscii                              = consts.ImeFlagForceAscii
	ImeFlagNavigateNext                            = consts.ImeFlagNavigateNext
	ImeFlagNavigatePrevious                        = consts.ImeFlagNavigatePrevious
	ImeFlagNoAccessoryAction                       = consts.ImeFlagNoAccessoryAction
	ImeFlagNoEnterAction                           = consts.ImeFlagNoEnterAction
	ImeFlagNoExtractUi                             = consts.ImeFlagNoExtractUi
	ImeFlagNoFullscreen                            = consts.ImeFlagNoFullscreen
	ImeFlagNoPersonalizedLearning                  = consts.ImeFlagNoPersonalizedLearning
	ImeMaskAction                                  = consts.ImeMaskAction
	ImeNull                                        = consts.ImeNull
	HandwritingDelegateFlagHomeDelegatorAllowed    = consts.HandwritingDelegateFlagHomeDelegatorAllowed
	HideImplicitOnly                               = consts.HideImplicitOnly
	HideNotAlways                                  = consts.HideNotAlways
	ResultHidden                                   = consts.ResultHidden
	ResultShown                                    = consts.ResultShown
	ResultUnchangedHidden                          = consts.ResultUnchangedHidden
	ResultUnchangedShown                           = consts.ResultUnchangedShown
	ShowForced                                     = consts.ShowForced
	ShowImplicit                                   = consts.ShowImplicit
	SuggestionCountUnlimited                       = consts.SuggestionCountUnlimited
	GranularityCharacter                           = consts.GranularityCharacter
	GranularityWord                                = consts.GranularityWord
	ShowExplicit                                   = consts.ShowExplicit
	FlagHasInvisibleRegion                         = consts.FlagHasInvisibleRegion
	FlagHasVisibleRegion                           = consts.FlagHasVisibleRegion
	FlagIsRtl                                      = consts.FlagIsRtl
)
View Source
const (
	SourceAutofill                  = consts.SourceAutofill
	SourcePlatform                  = consts.SourcePlatform
	TypeAction                      = consts.TypeAction
	TypeSuggestion                  = consts.TypeSuggestion
	ActionImeLanguageSettings       = consts.ActionImeLanguageSettings
	ActionStylusHandwritingSettings = consts.ActionStylusHandwritingSettings
	ServiceInterface                = consts.ServiceInterface
	ServiceMetaData                 = consts.ServiceMetaData
)

Variables ¶

This section is empty.

Functions ¶

func Init ¶

func Init(env *jni.Env) error

Init resolves all JNI class and method references for this package. It is safe to call multiple times (uses sync.Once internally). Exported for E2E testing on Android.

Types ¶

type BaseInputConnection ¶ added in v0.0.7

type BaseInputConnection struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

BaseInputConnection wraps android.view.inputmethod.BaseInputConnection.

func NewBaseInputConnection ¶ added in v0.0.7

func NewBaseInputConnection(vm *jni.VM, arg0 *jni.Object, arg1 bool) (*BaseInputConnection, error)

NewBaseInputConnection creates a new android.view.inputmethod.BaseInputConnection instance.

func (*BaseInputConnection) BeginBatchEdit ¶ added in v0.0.7

func (m *BaseInputConnection) BeginBatchEdit() (bool, error)

BeginBatchEdit calls android.view.inputmethod.BaseInputConnection.beginBatchEdit.

func (*BaseInputConnection) ClearMetaKeyStates ¶ added in v0.0.7

func (m *BaseInputConnection) ClearMetaKeyStates(arg0 int32) (bool, error)

ClearMetaKeyStates calls android.view.inputmethod.BaseInputConnection.clearMetaKeyStates.

func (*BaseInputConnection) CloseConnection ¶ added in v0.0.7

func (m *BaseInputConnection) CloseConnection() error

CloseConnection calls android.view.inputmethod.BaseInputConnection.closeConnection.

func (*BaseInputConnection) CommitCompletion ¶ added in v0.0.7

func (m *BaseInputConnection) CommitCompletion(arg0 *jni.Object) (bool, error)

CommitCompletion calls android.view.inputmethod.BaseInputConnection.commitCompletion.

func (*BaseInputConnection) CommitContent ¶ added in v0.0.7

func (m *BaseInputConnection) CommitContent(
	arg0 *jni.Object,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

CommitContent calls android.view.inputmethod.BaseInputConnection.commitContent.

func (*BaseInputConnection) CommitCorrection ¶ added in v0.0.7

func (m *BaseInputConnection) CommitCorrection(arg0 *jni.Object) (bool, error)

CommitCorrection calls android.view.inputmethod.BaseInputConnection.commitCorrection.

func (*BaseInputConnection) CommitText ¶ added in v0.0.7

func (m *BaseInputConnection) CommitText(arg0 string, arg1 int32) (bool, error)

CommitText calls android.view.inputmethod.BaseInputConnection.commitText.

func (*BaseInputConnection) DeleteSurroundingText ¶ added in v0.0.7

func (m *BaseInputConnection) DeleteSurroundingText(arg0 int32, arg1 int32) (bool, error)

DeleteSurroundingText calls android.view.inputmethod.BaseInputConnection.deleteSurroundingText.

func (*BaseInputConnection) DeleteSurroundingTextInCodePoints ¶ added in v0.0.7

func (m *BaseInputConnection) DeleteSurroundingTextInCodePoints(arg0 int32, arg1 int32) (bool, error)

DeleteSurroundingTextInCodePoints calls android.view.inputmethod.BaseInputConnection.deleteSurroundingTextInCodePoints.

func (*BaseInputConnection) EndBatchEdit ¶ added in v0.0.7

func (m *BaseInputConnection) EndBatchEdit() (bool, error)

EndBatchEdit calls android.view.inputmethod.BaseInputConnection.endBatchEdit.

func (*BaseInputConnection) FinishComposingText ¶ added in v0.0.7

func (m *BaseInputConnection) FinishComposingText() (bool, error)

FinishComposingText calls android.view.inputmethod.BaseInputConnection.finishComposingText.

func (*BaseInputConnection) GetComposingSpanEnd ¶ added in v0.0.7

func (m *BaseInputConnection) GetComposingSpanEnd(arg0 *jni.Object) (int32, error)

GetComposingSpanEnd calls android.view.inputmethod.BaseInputConnection.getComposingSpanEnd.

func (*BaseInputConnection) GetComposingSpanStart ¶ added in v0.0.7

func (m *BaseInputConnection) GetComposingSpanStart(arg0 *jni.Object) (int32, error)

GetComposingSpanStart calls android.view.inputmethod.BaseInputConnection.getComposingSpanStart.

func (*BaseInputConnection) GetCursorCapsMode ¶ added in v0.0.7

func (m *BaseInputConnection) GetCursorCapsMode(arg0 int32) (int32, error)

GetCursorCapsMode calls android.view.inputmethod.BaseInputConnection.getCursorCapsMode.

func (*BaseInputConnection) GetEditable ¶ added in v0.0.7

func (m *BaseInputConnection) GetEditable() (*jni.Object, error)

GetEditable calls android.view.inputmethod.BaseInputConnection.getEditable.

func (*BaseInputConnection) GetExtractedText ¶ added in v0.0.7

func (m *BaseInputConnection) GetExtractedText(arg0 *jni.Object, arg1 int32) (*jni.Object, error)

GetExtractedText calls android.view.inputmethod.BaseInputConnection.getExtractedText.

func (*BaseInputConnection) GetHandler ¶ added in v0.0.7

func (m *BaseInputConnection) GetHandler() (*jni.Object, error)

GetHandler calls android.view.inputmethod.BaseInputConnection.getHandler.

func (*BaseInputConnection) GetSelectedText ¶ added in v0.0.7

func (m *BaseInputConnection) GetSelectedText(arg0 int32) (*jni.Object, error)

GetSelectedText calls android.view.inputmethod.BaseInputConnection.getSelectedText.

func (*BaseInputConnection) GetSurroundingText ¶ added in v0.0.7

func (m *BaseInputConnection) GetSurroundingText(
	arg0 int32,
	arg1 int32,
	arg2 int32,
) (*jni.Object, error)

GetSurroundingText calls android.view.inputmethod.BaseInputConnection.getSurroundingText.

func (*BaseInputConnection) GetTextAfterCursor ¶ added in v0.0.7

func (m *BaseInputConnection) GetTextAfterCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetTextAfterCursor calls android.view.inputmethod.BaseInputConnection.getTextAfterCursor.

func (*BaseInputConnection) GetTextBeforeCursor ¶ added in v0.0.7

func (m *BaseInputConnection) GetTextBeforeCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetTextBeforeCursor calls android.view.inputmethod.BaseInputConnection.getTextBeforeCursor.

func (*BaseInputConnection) PerformContextMenuAction ¶ added in v0.0.7

func (m *BaseInputConnection) PerformContextMenuAction(arg0 int32) (bool, error)

PerformContextMenuAction calls android.view.inputmethod.BaseInputConnection.performContextMenuAction.

func (*BaseInputConnection) PerformEditorAction ¶ added in v0.0.7

func (m *BaseInputConnection) PerformEditorAction(arg0 int32) (bool, error)

PerformEditorAction calls android.view.inputmethod.BaseInputConnection.performEditorAction.

func (*BaseInputConnection) PerformPrivateCommand ¶ added in v0.0.7

func (m *BaseInputConnection) PerformPrivateCommand(arg0 string, arg1 *jni.Object) (bool, error)

PerformPrivateCommand calls android.view.inputmethod.BaseInputConnection.performPrivateCommand.

func (*BaseInputConnection) RemoveComposingSpans ¶ added in v0.0.7

func (m *BaseInputConnection) RemoveComposingSpans(arg0 *jni.Object) error

RemoveComposingSpans calls android.view.inputmethod.BaseInputConnection.removeComposingSpans.

func (*BaseInputConnection) ReplaceText ¶ added in v0.0.7

func (m *BaseInputConnection) ReplaceText(
	arg0 int32,
	arg1 int32,
	arg2 string,
	arg3 int32,
	arg4 *jni.Object,
) (bool, error)

ReplaceText calls android.view.inputmethod.BaseInputConnection.replaceText.

func (*BaseInputConnection) ReportFullscreenMode ¶ added in v0.0.7

func (m *BaseInputConnection) ReportFullscreenMode(arg0 bool) (bool, error)

ReportFullscreenMode calls android.view.inputmethod.BaseInputConnection.reportFullscreenMode.

func (*BaseInputConnection) RequestCursorUpdates ¶ added in v0.0.7

func (m *BaseInputConnection) RequestCursorUpdates(arg0 int32) (bool, error)

RequestCursorUpdates calls android.view.inputmethod.BaseInputConnection.requestCursorUpdates.

func (*BaseInputConnection) SendKeyEvent ¶ added in v0.0.7

func (m *BaseInputConnection) SendKeyEvent(arg0 *jni.Object) (bool, error)

SendKeyEvent calls android.view.inputmethod.BaseInputConnection.sendKeyEvent.

func (*BaseInputConnection) SetComposingRegion ¶ added in v0.0.7

func (m *BaseInputConnection) SetComposingRegion(arg0 int32, arg1 int32) (bool, error)

SetComposingRegion calls android.view.inputmethod.BaseInputConnection.setComposingRegion.

func (*BaseInputConnection) SetComposingSpans ¶ added in v0.0.7

func (m *BaseInputConnection) SetComposingSpans(arg0 *jni.Object) error

SetComposingSpans calls android.view.inputmethod.BaseInputConnection.setComposingSpans.

func (*BaseInputConnection) SetComposingText ¶ added in v0.0.7

func (m *BaseInputConnection) SetComposingText(arg0 string, arg1 int32) (bool, error)

SetComposingText calls android.view.inputmethod.BaseInputConnection.setComposingText.

func (*BaseInputConnection) SetSelection ¶ added in v0.0.7

func (m *BaseInputConnection) SetSelection(arg0 int32, arg1 int32) (bool, error)

SetSelection calls android.view.inputmethod.BaseInputConnection.setSelection.

func (*BaseInputConnection) TakeSnapshot ¶ added in v0.0.7

func (m *BaseInputConnection) TakeSnapshot() (*jni.Object, error)

TakeSnapshot calls android.view.inputmethod.BaseInputConnection.takeSnapshot.

func (*BaseInputConnection) ToString ¶ added in v0.0.8

func (m *BaseInputConnection) ToString() (string, error)

ToString calls android.view.inputmethod.BaseInputConnection.toString.

type CompletionInfo ¶ added in v0.0.7

type CompletionInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

CompletionInfo wraps android.view.inputmethod.CompletionInfo.

func NewCompletionInfo ¶ added in v0.0.7

func NewCompletionInfo(vm *jni.VM, arg0 int64, arg1 int32, arg2 string) (*CompletionInfo, error)

NewCompletionInfo creates a new android.view.inputmethod.CompletionInfo instance.

func (*CompletionInfo) DescribeContents ¶ added in v0.0.7

func (m *CompletionInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.CompletionInfo.describeContents.

func (*CompletionInfo) GetId ¶ added in v0.0.7

func (m *CompletionInfo) GetId() (int64, error)

GetId calls android.view.inputmethod.CompletionInfo.getId.

func (*CompletionInfo) GetLabel ¶ added in v0.0.7

func (m *CompletionInfo) GetLabel() (*jni.Object, error)

GetLabel calls android.view.inputmethod.CompletionInfo.getLabel.

func (*CompletionInfo) GetPosition ¶ added in v0.0.7

func (m *CompletionInfo) GetPosition() (int32, error)

GetPosition calls android.view.inputmethod.CompletionInfo.getPosition.

func (*CompletionInfo) GetText ¶ added in v0.0.7

func (m *CompletionInfo) GetText() (*jni.Object, error)

GetText calls android.view.inputmethod.CompletionInfo.getText.

func (*CompletionInfo) ToString ¶ added in v0.0.7

func (m *CompletionInfo) ToString() (string, error)

ToString calls android.view.inputmethod.CompletionInfo.toString.

func (*CompletionInfo) WriteToParcel ¶ added in v0.0.7

func (m *CompletionInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.CompletionInfo.writeToParcel.

type ConnectionlessHandwritingCallback ¶ added in v0.0.7

type ConnectionlessHandwritingCallback struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ConnectionlessHandwritingCallback wraps android.view.inputmethod.ConnectionlessHandwritingCallback.

func (*ConnectionlessHandwritingCallback) OnError ¶ added in v0.0.7

OnError calls android.view.inputmethod.ConnectionlessHandwritingCallback.onError.

func (*ConnectionlessHandwritingCallback) OnResult ¶ added in v0.0.7

OnResult calls android.view.inputmethod.ConnectionlessHandwritingCallback.onResult.

func (*ConnectionlessHandwritingCallback) ToString ¶ added in v0.0.8

ToString calls android.view.inputmethod.ConnectionlessHandwritingCallback.toString.

type CorrectionInfo ¶ added in v0.0.7

type CorrectionInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

CorrectionInfo wraps android.view.inputmethod.CorrectionInfo.

func NewCorrectionInfo ¶ added in v0.0.7

func NewCorrectionInfo(vm *jni.VM, arg0 int32, arg1 string, arg2 string) (*CorrectionInfo, error)

NewCorrectionInfo creates a new android.view.inputmethod.CorrectionInfo instance.

func (*CorrectionInfo) DescribeContents ¶ added in v0.0.7

func (m *CorrectionInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.CorrectionInfo.describeContents.

func (*CorrectionInfo) GetNewText ¶ added in v0.0.7

func (m *CorrectionInfo) GetNewText() (*jni.Object, error)

GetNewText calls android.view.inputmethod.CorrectionInfo.getNewText.

func (*CorrectionInfo) GetOffset ¶ added in v0.0.7

func (m *CorrectionInfo) GetOffset() (int32, error)

GetOffset calls android.view.inputmethod.CorrectionInfo.getOffset.

func (*CorrectionInfo) GetOldText ¶ added in v0.0.7

func (m *CorrectionInfo) GetOldText() (*jni.Object, error)

GetOldText calls android.view.inputmethod.CorrectionInfo.getOldText.

func (*CorrectionInfo) ToString ¶ added in v0.0.7

func (m *CorrectionInfo) ToString() (string, error)

ToString calls android.view.inputmethod.CorrectionInfo.toString.

func (*CorrectionInfo) WriteToParcel ¶ added in v0.0.7

func (m *CorrectionInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.CorrectionInfo.writeToParcel.

type CursorAnchorInfo ¶ added in v0.0.7

type CursorAnchorInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

CursorAnchorInfo wraps android.view.inputmethod.CursorAnchorInfo.

func NewCursorAnchorInfo ¶ added in v0.0.7

func NewCursorAnchorInfo(vm *jni.VM, arg0 *jni.Object) (*CursorAnchorInfo, error)

NewCursorAnchorInfo creates a new android.view.inputmethod.CursorAnchorInfo instance.

func (*CursorAnchorInfo) DescribeContents ¶ added in v0.0.7

func (m *CursorAnchorInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.CursorAnchorInfo.describeContents.

func (*CursorAnchorInfo) Equals ¶ added in v0.0.7

func (m *CursorAnchorInfo) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.CursorAnchorInfo.equals.

func (*CursorAnchorInfo) GetCharacterBounds ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetCharacterBounds(arg0 int32) (*jni.Object, error)

GetCharacterBounds calls android.view.inputmethod.CursorAnchorInfo.getCharacterBounds.

func (*CursorAnchorInfo) GetCharacterBoundsFlags ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetCharacterBoundsFlags(arg0 int32) (int32, error)

GetCharacterBoundsFlags calls android.view.inputmethod.CursorAnchorInfo.getCharacterBoundsFlags.

func (*CursorAnchorInfo) GetComposingText ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetComposingText() (*jni.Object, error)

GetComposingText calls android.view.inputmethod.CursorAnchorInfo.getComposingText.

func (*CursorAnchorInfo) GetComposingTextStart ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetComposingTextStart() (int32, error)

GetComposingTextStart calls android.view.inputmethod.CursorAnchorInfo.getComposingTextStart.

func (*CursorAnchorInfo) GetEditorBoundsInfo ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetEditorBoundsInfo() (*jni.Object, error)

GetEditorBoundsInfo calls android.view.inputmethod.CursorAnchorInfo.getEditorBoundsInfo.

func (*CursorAnchorInfo) GetInsertionMarkerBaseline ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetInsertionMarkerBaseline() (float32, error)

GetInsertionMarkerBaseline calls android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerBaseline.

func (*CursorAnchorInfo) GetInsertionMarkerBottom ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetInsertionMarkerBottom() (float32, error)

GetInsertionMarkerBottom calls android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerBottom.

func (*CursorAnchorInfo) GetInsertionMarkerFlags ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetInsertionMarkerFlags() (int32, error)

GetInsertionMarkerFlags calls android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerFlags.

func (*CursorAnchorInfo) GetInsertionMarkerHorizontal ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetInsertionMarkerHorizontal() (float32, error)

GetInsertionMarkerHorizontal calls android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerHorizontal.

func (*CursorAnchorInfo) GetInsertionMarkerTop ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetInsertionMarkerTop() (float32, error)

GetInsertionMarkerTop calls android.view.inputmethod.CursorAnchorInfo.getInsertionMarkerTop.

func (*CursorAnchorInfo) GetMatrix ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetMatrix() (*jni.Object, error)

GetMatrix calls android.view.inputmethod.CursorAnchorInfo.getMatrix.

func (*CursorAnchorInfo) GetSelectionEnd ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetSelectionEnd() (int32, error)

GetSelectionEnd calls android.view.inputmethod.CursorAnchorInfo.getSelectionEnd.

func (*CursorAnchorInfo) GetSelectionStart ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetSelectionStart() (int32, error)

GetSelectionStart calls android.view.inputmethod.CursorAnchorInfo.getSelectionStart.

func (*CursorAnchorInfo) GetTextAppearanceInfo ¶ added in v0.0.7

func (m *CursorAnchorInfo) GetTextAppearanceInfo() (*jni.Object, error)

GetTextAppearanceInfo calls android.view.inputmethod.CursorAnchorInfo.getTextAppearanceInfo.

func (*CursorAnchorInfo) GetVisibleLineBounds ¶ added in v0.0.8

func (m *CursorAnchorInfo) GetVisibleLineBounds() (*jni.Object, error)

GetVisibleLineBounds calls android.view.inputmethod.CursorAnchorInfo.getVisibleLineBounds.

func (*CursorAnchorInfo) HashCode ¶ added in v0.0.7

func (m *CursorAnchorInfo) HashCode() (int32, error)

HashCode calls android.view.inputmethod.CursorAnchorInfo.hashCode.

func (*CursorAnchorInfo) ToString ¶ added in v0.0.7

func (m *CursorAnchorInfo) ToString() (string, error)

ToString calls android.view.inputmethod.CursorAnchorInfo.toString.

func (*CursorAnchorInfo) WriteToParcel ¶ added in v0.0.7

func (m *CursorAnchorInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.CursorAnchorInfo.writeToParcel.

type CursorAnchorInfoBuilder ¶ added in v0.0.7

type CursorAnchorInfoBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

CursorAnchorInfoBuilder wraps android.view.inputmethod.CursorAnchorInfo$Builder.

func (*CursorAnchorInfoBuilder) AddCharacterBounds ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) AddCharacterBounds(
	arg0 int32,
	arg1 float32,
	arg2 float32,
	arg3 float32,
	arg4 float32,
	arg5 int32,
) (*jni.Object, error)

AddCharacterBounds calls android.view.inputmethod.CursorAnchorInfo$Builder.addCharacterBounds.

func (*CursorAnchorInfoBuilder) AddVisibleLineBounds ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) AddVisibleLineBounds(
	arg0 float32,
	arg1 float32,
	arg2 float32,
	arg3 float32,
) (*jni.Object, error)

AddVisibleLineBounds calls android.view.inputmethod.CursorAnchorInfo$Builder.addVisibleLineBounds.

func (*CursorAnchorInfoBuilder) Build ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.CursorAnchorInfo$Builder.build.

func (*CursorAnchorInfoBuilder) ClearVisibleLineBounds ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) ClearVisibleLineBounds() (*jni.Object, error)

ClearVisibleLineBounds calls android.view.inputmethod.CursorAnchorInfo$Builder.clearVisibleLineBounds.

func (*CursorAnchorInfoBuilder) Reset ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) Reset() error

Reset calls android.view.inputmethod.CursorAnchorInfo$Builder.reset.

func (*CursorAnchorInfoBuilder) SetComposingText ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) SetComposingText(arg0 int32, arg1 string) (*jni.Object, error)

SetComposingText calls android.view.inputmethod.CursorAnchorInfo$Builder.setComposingText.

func (*CursorAnchorInfoBuilder) SetEditorBoundsInfo ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) SetEditorBoundsInfo(arg0 *jni.Object) (*jni.Object, error)

SetEditorBoundsInfo calls android.view.inputmethod.CursorAnchorInfo$Builder.setEditorBoundsInfo.

func (*CursorAnchorInfoBuilder) SetInsertionMarkerLocation ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) SetInsertionMarkerLocation(
	arg0 float32,
	arg1 float32,
	arg2 float32,
	arg3 float32,
	arg4 int32,
) (*jni.Object, error)

SetInsertionMarkerLocation calls android.view.inputmethod.CursorAnchorInfo$Builder.setInsertionMarkerLocation.

func (*CursorAnchorInfoBuilder) SetMatrix ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) SetMatrix(arg0 *jni.Object) (*jni.Object, error)

SetMatrix calls android.view.inputmethod.CursorAnchorInfo$Builder.setMatrix.

func (*CursorAnchorInfoBuilder) SetSelectionRange ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) SetSelectionRange(arg0 int32, arg1 int32) (*jni.Object, error)

SetSelectionRange calls android.view.inputmethod.CursorAnchorInfo$Builder.setSelectionRange.

func (*CursorAnchorInfoBuilder) SetTextAppearanceInfo ¶ added in v0.0.7

func (m *CursorAnchorInfoBuilder) SetTextAppearanceInfo(arg0 *jni.Object) (*jni.Object, error)

SetTextAppearanceInfo calls android.view.inputmethod.CursorAnchorInfo$Builder.setTextAppearanceInfo.

func (*CursorAnchorInfoBuilder) ToString ¶ added in v0.0.8

func (m *CursorAnchorInfoBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.CursorAnchorInfo$Builder.toString.

type DeleteGesture ¶ added in v0.0.7

type DeleteGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

DeleteGesture wraps android.view.inputmethod.DeleteGesture.

func (*DeleteGesture) DescribeContents ¶ added in v0.0.7

func (m *DeleteGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.DeleteGesture.describeContents.

func (*DeleteGesture) Equals ¶ added in v0.0.7

func (m *DeleteGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.DeleteGesture.equals.

func (*DeleteGesture) GetDeletionArea ¶ added in v0.0.7

func (m *DeleteGesture) GetDeletionArea() (*jni.Object, error)

GetDeletionArea calls android.view.inputmethod.DeleteGesture.getDeletionArea.

func (*DeleteGesture) GetGranularity ¶ added in v0.0.7

func (m *DeleteGesture) GetGranularity() (int32, error)

GetGranularity calls android.view.inputmethod.DeleteGesture.getGranularity.

func (*DeleteGesture) HashCode ¶ added in v0.0.7

func (m *DeleteGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.DeleteGesture.hashCode.

func (*DeleteGesture) ToString ¶ added in v0.0.8

func (m *DeleteGesture) ToString() (string, error)

ToString calls android.view.inputmethod.DeleteGesture.toString.

func (*DeleteGesture) WriteToParcel ¶ added in v0.0.7

func (m *DeleteGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.DeleteGesture.writeToParcel.

type DeleteGestureBuilder ¶ added in v0.0.7

type DeleteGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

DeleteGestureBuilder wraps android.view.inputmethod.DeleteGesture$Builder.

func (*DeleteGestureBuilder) Build ¶ added in v0.0.7

func (m *DeleteGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.DeleteGesture$Builder.build.

func (*DeleteGestureBuilder) SetDeletionArea ¶ added in v0.0.7

func (m *DeleteGestureBuilder) SetDeletionArea(arg0 *jni.Object) (*jni.Object, error)

SetDeletionArea calls android.view.inputmethod.DeleteGesture$Builder.setDeletionArea.

func (*DeleteGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *DeleteGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.DeleteGesture$Builder.setFallbackText.

func (*DeleteGestureBuilder) SetGranularity ¶ added in v0.0.7

func (m *DeleteGestureBuilder) SetGranularity(arg0 int32) (*jni.Object, error)

SetGranularity calls android.view.inputmethod.DeleteGesture$Builder.setGranularity.

func (*DeleteGestureBuilder) ToString ¶ added in v0.0.8

func (m *DeleteGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.DeleteGesture$Builder.toString.

type DeleteRangeGesture ¶ added in v0.0.7

type DeleteRangeGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

DeleteRangeGesture wraps android.view.inputmethod.DeleteRangeGesture.

func (*DeleteRangeGesture) DescribeContents ¶ added in v0.0.7

func (m *DeleteRangeGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.DeleteRangeGesture.describeContents.

func (*DeleteRangeGesture) Equals ¶ added in v0.0.7

func (m *DeleteRangeGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.DeleteRangeGesture.equals.

func (*DeleteRangeGesture) GetDeletionEndArea ¶ added in v0.0.7

func (m *DeleteRangeGesture) GetDeletionEndArea() (*jni.Object, error)

GetDeletionEndArea calls android.view.inputmethod.DeleteRangeGesture.getDeletionEndArea.

func (*DeleteRangeGesture) GetDeletionStartArea ¶ added in v0.0.7

func (m *DeleteRangeGesture) GetDeletionStartArea() (*jni.Object, error)

GetDeletionStartArea calls android.view.inputmethod.DeleteRangeGesture.getDeletionStartArea.

func (*DeleteRangeGesture) GetGranularity ¶ added in v0.0.7

func (m *DeleteRangeGesture) GetGranularity() (int32, error)

GetGranularity calls android.view.inputmethod.DeleteRangeGesture.getGranularity.

func (*DeleteRangeGesture) HashCode ¶ added in v0.0.7

func (m *DeleteRangeGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.DeleteRangeGesture.hashCode.

func (*DeleteRangeGesture) ToString ¶ added in v0.0.8

func (m *DeleteRangeGesture) ToString() (string, error)

ToString calls android.view.inputmethod.DeleteRangeGesture.toString.

func (*DeleteRangeGesture) WriteToParcel ¶ added in v0.0.7

func (m *DeleteRangeGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.DeleteRangeGesture.writeToParcel.

type DeleteRangeGestureBuilder ¶ added in v0.0.7

type DeleteRangeGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

DeleteRangeGestureBuilder wraps android.view.inputmethod.DeleteRangeGesture$Builder.

func (*DeleteRangeGestureBuilder) Build ¶ added in v0.0.7

func (m *DeleteRangeGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.DeleteRangeGesture$Builder.build.

func (*DeleteRangeGestureBuilder) SetDeletionEndArea ¶ added in v0.0.7

func (m *DeleteRangeGestureBuilder) SetDeletionEndArea(arg0 *jni.Object) (*jni.Object, error)

SetDeletionEndArea calls android.view.inputmethod.DeleteRangeGesture$Builder.setDeletionEndArea.

func (*DeleteRangeGestureBuilder) SetDeletionStartArea ¶ added in v0.0.7

func (m *DeleteRangeGestureBuilder) SetDeletionStartArea(arg0 *jni.Object) (*jni.Object, error)

SetDeletionStartArea calls android.view.inputmethod.DeleteRangeGesture$Builder.setDeletionStartArea.

func (*DeleteRangeGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *DeleteRangeGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.DeleteRangeGesture$Builder.setFallbackText.

func (*DeleteRangeGestureBuilder) SetGranularity ¶ added in v0.0.7

func (m *DeleteRangeGestureBuilder) SetGranularity(arg0 int32) (*jni.Object, error)

SetGranularity calls android.view.inputmethod.DeleteRangeGesture$Builder.setGranularity.

func (*DeleteRangeGestureBuilder) ToString ¶ added in v0.0.8

func (m *DeleteRangeGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.DeleteRangeGesture$Builder.toString.

type EditorBoundsInfo ¶ added in v0.0.7

type EditorBoundsInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

EditorBoundsInfo wraps android.view.inputmethod.EditorBoundsInfo.

func (*EditorBoundsInfo) DescribeContents ¶ added in v0.0.7

func (m *EditorBoundsInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.EditorBoundsInfo.describeContents.

func (*EditorBoundsInfo) Equals ¶ added in v0.0.7

func (m *EditorBoundsInfo) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.EditorBoundsInfo.equals.

func (*EditorBoundsInfo) GetEditorBounds ¶ added in v0.0.7

func (m *EditorBoundsInfo) GetEditorBounds() (*jni.Object, error)

GetEditorBounds calls android.view.inputmethod.EditorBoundsInfo.getEditorBounds.

func (*EditorBoundsInfo) GetHandwritingBounds ¶ added in v0.0.7

func (m *EditorBoundsInfo) GetHandwritingBounds() (*jni.Object, error)

GetHandwritingBounds calls android.view.inputmethod.EditorBoundsInfo.getHandwritingBounds.

func (*EditorBoundsInfo) HashCode ¶ added in v0.0.7

func (m *EditorBoundsInfo) HashCode() (int32, error)

HashCode calls android.view.inputmethod.EditorBoundsInfo.hashCode.

func (*EditorBoundsInfo) ToString ¶ added in v0.0.7

func (m *EditorBoundsInfo) ToString() (string, error)

ToString calls android.view.inputmethod.EditorBoundsInfo.toString.

func (*EditorBoundsInfo) WriteToParcel ¶ added in v0.0.7

func (m *EditorBoundsInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.EditorBoundsInfo.writeToParcel.

type EditorBoundsInfoBuilder ¶ added in v0.0.7

type EditorBoundsInfoBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

EditorBoundsInfoBuilder wraps android.view.inputmethod.EditorBoundsInfo$Builder.

func (*EditorBoundsInfoBuilder) Build ¶ added in v0.0.7

func (m *EditorBoundsInfoBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.EditorBoundsInfo$Builder.build.

func (*EditorBoundsInfoBuilder) SetEditorBounds ¶ added in v0.0.7

func (m *EditorBoundsInfoBuilder) SetEditorBounds(arg0 *jni.Object) (*jni.Object, error)

SetEditorBounds calls android.view.inputmethod.EditorBoundsInfo$Builder.setEditorBounds.

func (*EditorBoundsInfoBuilder) SetHandwritingBounds ¶ added in v0.0.7

func (m *EditorBoundsInfoBuilder) SetHandwritingBounds(arg0 *jni.Object) (*jni.Object, error)

SetHandwritingBounds calls android.view.inputmethod.EditorBoundsInfo$Builder.setHandwritingBounds.

func (*EditorBoundsInfoBuilder) ToString ¶ added in v0.0.8

func (m *EditorBoundsInfoBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.EditorBoundsInfo$Builder.toString.

type EditorInfo ¶ added in v0.0.7

type EditorInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

EditorInfo wraps android.view.inputmethod.EditorInfo.

func NewEditorInfo ¶ added in v0.0.7

func NewEditorInfo(vm *jni.VM) (*EditorInfo, error)

NewEditorInfo creates a new android.view.inputmethod.EditorInfo instance.

func (*EditorInfo) DescribeContents ¶ added in v0.0.7

func (m *EditorInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.EditorInfo.describeContents.

func (*EditorInfo) Dump ¶ added in v0.0.7

func (m *EditorInfo) Dump(arg0 *jni.Object, arg1 string) error

Dump calls android.view.inputmethod.EditorInfo.dump.

func (*EditorInfo) GetAutofillId ¶ added in v0.0.7

func (m *EditorInfo) GetAutofillId() (*jni.Object, error)

GetAutofillId calls android.view.inputmethod.EditorInfo.getAutofillId.

func (*EditorInfo) GetInitialSelectedText ¶ added in v0.0.7

func (m *EditorInfo) GetInitialSelectedText(arg0 int32) (*jni.Object, error)

GetInitialSelectedText calls android.view.inputmethod.EditorInfo.getInitialSelectedText.

func (*EditorInfo) GetInitialSurroundingText ¶ added in v0.0.7

func (m *EditorInfo) GetInitialSurroundingText(
	arg0 int32,
	arg1 int32,
	arg2 int32,
) (*jni.Object, error)

GetInitialSurroundingText calls android.view.inputmethod.EditorInfo.getInitialSurroundingText.

func (*EditorInfo) GetInitialTextAfterCursor ¶ added in v0.0.7

func (m *EditorInfo) GetInitialTextAfterCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetInitialTextAfterCursor calls android.view.inputmethod.EditorInfo.getInitialTextAfterCursor.

func (*EditorInfo) GetInitialTextBeforeCursor ¶ added in v0.0.7

func (m *EditorInfo) GetInitialTextBeforeCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetInitialTextBeforeCursor calls android.view.inputmethod.EditorInfo.getInitialTextBeforeCursor.

func (*EditorInfo) GetInitialToolType ¶ added in v0.0.7

func (m *EditorInfo) GetInitialToolType() (int32, error)

GetInitialToolType calls android.view.inputmethod.EditorInfo.getInitialToolType.

func (*EditorInfo) IsStylusHandwritingEnabled ¶ added in v0.0.7

func (m *EditorInfo) IsStylusHandwritingEnabled() (bool, error)

IsStylusHandwritingEnabled calls android.view.inputmethod.EditorInfo.isStylusHandwritingEnabled.

func (*EditorInfo) IsWritingToolsEnabled ¶ added in v0.0.7

func (m *EditorInfo) IsWritingToolsEnabled() (bool, error)

IsWritingToolsEnabled calls android.view.inputmethod.EditorInfo.isWritingToolsEnabled.

func (*EditorInfo) MakeCompatible ¶ added in v0.0.7

func (m *EditorInfo) MakeCompatible(arg0 int32) error

MakeCompatible calls android.view.inputmethod.EditorInfo.makeCompatible.

func (*EditorInfo) SetAutofillId ¶ added in v0.0.7

func (m *EditorInfo) SetAutofillId(arg0 *jni.Object) error

SetAutofillId calls android.view.inputmethod.EditorInfo.setAutofillId.

func (*EditorInfo) SetInitialSurroundingSubText ¶ added in v0.0.7

func (m *EditorInfo) SetInitialSurroundingSubText(arg0 string, arg1 int32) error

SetInitialSurroundingSubText calls android.view.inputmethod.EditorInfo.setInitialSurroundingSubText.

func (*EditorInfo) SetInitialSurroundingText ¶ added in v0.0.7

func (m *EditorInfo) SetInitialSurroundingText(arg0 string) error

SetInitialSurroundingText calls android.view.inputmethod.EditorInfo.setInitialSurroundingText.

func (*EditorInfo) SetInitialToolType ¶ added in v0.0.7

func (m *EditorInfo) SetInitialToolType(arg0 int32) error

SetInitialToolType calls android.view.inputmethod.EditorInfo.setInitialToolType.

func (*EditorInfo) SetStylusHandwritingEnabled ¶ added in v0.0.7

func (m *EditorInfo) SetStylusHandwritingEnabled(arg0 bool) error

SetStylusHandwritingEnabled calls android.view.inputmethod.EditorInfo.setStylusHandwritingEnabled.

func (*EditorInfo) SetWritingToolsEnabled ¶ added in v0.0.7

func (m *EditorInfo) SetWritingToolsEnabled(arg0 bool) error

SetWritingToolsEnabled calls android.view.inputmethod.EditorInfo.setWritingToolsEnabled.

func (*EditorInfo) ToString ¶ added in v0.0.8

func (m *EditorInfo) ToString() (string, error)

ToString calls android.view.inputmethod.EditorInfo.toString.

func (*EditorInfo) WriteToParcel ¶ added in v0.0.7

func (m *EditorInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.EditorInfo.writeToParcel.

type ExtractedText ¶ added in v0.0.7

type ExtractedText struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ExtractedText wraps android.view.inputmethod.ExtractedText.

func NewExtractedText ¶ added in v0.0.7

func NewExtractedText(vm *jni.VM) (*ExtractedText, error)

NewExtractedText creates a new android.view.inputmethod.ExtractedText instance.

func (*ExtractedText) DescribeContents ¶ added in v0.0.7

func (m *ExtractedText) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.ExtractedText.describeContents.

func (*ExtractedText) ToString ¶ added in v0.0.8

func (m *ExtractedText) ToString() (string, error)

ToString calls android.view.inputmethod.ExtractedText.toString.

func (*ExtractedText) WriteToParcel ¶ added in v0.0.7

func (m *ExtractedText) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.ExtractedText.writeToParcel.

type ExtractedTextRequest ¶ added in v0.0.7

type ExtractedTextRequest struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

ExtractedTextRequest wraps android.view.inputmethod.ExtractedTextRequest.

func NewExtractedTextRequest ¶ added in v0.0.7

func NewExtractedTextRequest(vm *jni.VM) (*ExtractedTextRequest, error)

NewExtractedTextRequest creates a new android.view.inputmethod.ExtractedTextRequest instance.

func (*ExtractedTextRequest) DescribeContents ¶ added in v0.0.7

func (m *ExtractedTextRequest) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.ExtractedTextRequest.describeContents.

func (*ExtractedTextRequest) ToString ¶ added in v0.0.8

func (m *ExtractedTextRequest) ToString() (string, error)

ToString calls android.view.inputmethod.ExtractedTextRequest.toString.

func (*ExtractedTextRequest) WriteToParcel ¶ added in v0.0.7

func (m *ExtractedTextRequest) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.ExtractedTextRequest.writeToParcel.

type HandwritingGesture ¶ added in v0.0.7

type HandwritingGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

HandwritingGesture wraps android.view.inputmethod.HandwritingGesture.

func (*HandwritingGesture) GetFallbackText ¶ added in v0.0.7

func (m *HandwritingGesture) GetFallbackText() (string, error)

GetFallbackText calls android.view.inputmethod.HandwritingGesture.getFallbackText.

func (*HandwritingGesture) ToString ¶ added in v0.0.8

func (m *HandwritingGesture) ToString() (string, error)

ToString calls android.view.inputmethod.HandwritingGesture.toString.

type InlineSuggestion ¶ added in v0.0.7

type InlineSuggestion struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InlineSuggestion wraps android.view.inputmethod.InlineSuggestion.

func (*InlineSuggestion) DescribeContents ¶ added in v0.0.7

func (m *InlineSuggestion) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InlineSuggestion.describeContents.

func (*InlineSuggestion) Equals ¶ added in v0.0.7

func (m *InlineSuggestion) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InlineSuggestion.equals.

func (*InlineSuggestion) GetInfo ¶ added in v0.0.7

func (m *InlineSuggestion) GetInfo() (*jni.Object, error)

GetInfo calls android.view.inputmethod.InlineSuggestion.getInfo.

func (*InlineSuggestion) HashCode ¶ added in v0.0.7

func (m *InlineSuggestion) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InlineSuggestion.hashCode.

func (*InlineSuggestion) ToString ¶ added in v0.0.7

func (m *InlineSuggestion) ToString() (string, error)

ToString calls android.view.inputmethod.InlineSuggestion.toString.

func (*InlineSuggestion) WriteToParcel ¶ added in v0.0.7

func (m *InlineSuggestion) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InlineSuggestion.writeToParcel.

type InlineSuggestionInfo ¶ added in v0.0.7

type InlineSuggestionInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InlineSuggestionInfo wraps android.view.inputmethod.InlineSuggestionInfo.

func (*InlineSuggestionInfo) DescribeContents ¶ added in v0.0.7

func (m *InlineSuggestionInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InlineSuggestionInfo.describeContents.

func (*InlineSuggestionInfo) Equals ¶ added in v0.0.7

func (m *InlineSuggestionInfo) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InlineSuggestionInfo.equals.

func (*InlineSuggestionInfo) GetAutofillHints ¶ added in v0.0.7

func (m *InlineSuggestionInfo) GetAutofillHints() (*jni.Object, error)

GetAutofillHints calls android.view.inputmethod.InlineSuggestionInfo.getAutofillHints.

func (*InlineSuggestionInfo) GetInlinePresentationSpec ¶ added in v0.0.7

func (m *InlineSuggestionInfo) GetInlinePresentationSpec() (*jni.Object, error)

GetInlinePresentationSpec calls android.view.inputmethod.InlineSuggestionInfo.getInlinePresentationSpec.

func (*InlineSuggestionInfo) GetSource ¶ added in v0.0.7

func (m *InlineSuggestionInfo) GetSource() (string, error)

GetSource calls android.view.inputmethod.InlineSuggestionInfo.getSource.

func (*InlineSuggestionInfo) GetType ¶ added in v0.0.7

func (m *InlineSuggestionInfo) GetType() (string, error)

GetType calls android.view.inputmethod.InlineSuggestionInfo.getType.

func (*InlineSuggestionInfo) HashCode ¶ added in v0.0.7

func (m *InlineSuggestionInfo) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InlineSuggestionInfo.hashCode.

func (*InlineSuggestionInfo) IsPinned ¶ added in v0.0.7

func (m *InlineSuggestionInfo) IsPinned() (bool, error)

IsPinned calls android.view.inputmethod.InlineSuggestionInfo.isPinned.

func (*InlineSuggestionInfo) ToString ¶ added in v0.0.7

func (m *InlineSuggestionInfo) ToString() (string, error)

ToString calls android.view.inputmethod.InlineSuggestionInfo.toString.

func (*InlineSuggestionInfo) WriteToParcel ¶ added in v0.0.7

func (m *InlineSuggestionInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InlineSuggestionInfo.writeToParcel.

type InlineSuggestionsRequest ¶ added in v0.0.7

type InlineSuggestionsRequest struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InlineSuggestionsRequest wraps android.view.inputmethod.InlineSuggestionsRequest.

func (*InlineSuggestionsRequest) DescribeContents ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InlineSuggestionsRequest.describeContents.

func (*InlineSuggestionsRequest) Equals ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InlineSuggestionsRequest.equals.

func (*InlineSuggestionsRequest) GetExtras ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) GetExtras() (*jni.Object, error)

GetExtras calls android.view.inputmethod.InlineSuggestionsRequest.getExtras.

func (*InlineSuggestionsRequest) GetHostPackageName ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) GetHostPackageName() (string, error)

GetHostPackageName calls android.view.inputmethod.InlineSuggestionsRequest.getHostPackageName.

func (*InlineSuggestionsRequest) GetInlinePresentationSpecs ¶ added in v0.0.8

func (m *InlineSuggestionsRequest) GetInlinePresentationSpecs() (*jni.Object, error)

GetInlinePresentationSpecs calls android.view.inputmethod.InlineSuggestionsRequest.getInlinePresentationSpecs.

func (*InlineSuggestionsRequest) GetInlineTooltipPresentationSpec ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) GetInlineTooltipPresentationSpec() (*jni.Object, error)

GetInlineTooltipPresentationSpec calls android.view.inputmethod.InlineSuggestionsRequest.getInlineTooltipPresentationSpec.

func (*InlineSuggestionsRequest) GetMaxSuggestionCount ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) GetMaxSuggestionCount() (int32, error)

GetMaxSuggestionCount calls android.view.inputmethod.InlineSuggestionsRequest.getMaxSuggestionCount.

func (*InlineSuggestionsRequest) GetSupportedLocales ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) GetSupportedLocales() (*jni.Object, error)

GetSupportedLocales calls android.view.inputmethod.InlineSuggestionsRequest.getSupportedLocales.

func (*InlineSuggestionsRequest) HashCode ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InlineSuggestionsRequest.hashCode.

func (*InlineSuggestionsRequest) ToString ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) ToString() (string, error)

ToString calls android.view.inputmethod.InlineSuggestionsRequest.toString.

func (*InlineSuggestionsRequest) WriteToParcel ¶ added in v0.0.7

func (m *InlineSuggestionsRequest) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InlineSuggestionsRequest.writeToParcel.

type InlineSuggestionsRequestBuilder ¶ added in v0.0.7

type InlineSuggestionsRequestBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InlineSuggestionsRequestBuilder wraps android.view.inputmethod.InlineSuggestionsRequest$Builder.

func (*InlineSuggestionsRequestBuilder) AddInlinePresentationSpecs ¶ added in v0.0.7

func (m *InlineSuggestionsRequestBuilder) AddInlinePresentationSpecs(arg0 *jni.Object) (*jni.Object, error)

AddInlinePresentationSpecs calls android.view.inputmethod.InlineSuggestionsRequest$Builder.addInlinePresentationSpecs.

func (*InlineSuggestionsRequestBuilder) Build ¶ added in v0.0.7

Build calls android.view.inputmethod.InlineSuggestionsRequest$Builder.build.

func (*InlineSuggestionsRequestBuilder) SetExtras ¶ added in v0.0.7

func (m *InlineSuggestionsRequestBuilder) SetExtras(arg0 *jni.Object) (*jni.Object, error)

SetExtras calls android.view.inputmethod.InlineSuggestionsRequest$Builder.setExtras.

func (*InlineSuggestionsRequestBuilder) SetInlineTooltipPresentationSpec ¶ added in v0.0.7

func (m *InlineSuggestionsRequestBuilder) SetInlineTooltipPresentationSpec(arg0 *jni.Object) (*jni.Object, error)

SetInlineTooltipPresentationSpec calls android.view.inputmethod.InlineSuggestionsRequest$Builder.setInlineTooltipPresentationSpec.

func (*InlineSuggestionsRequestBuilder) SetMaxSuggestionCount ¶ added in v0.0.7

func (m *InlineSuggestionsRequestBuilder) SetMaxSuggestionCount(arg0 int32) (*jni.Object, error)

SetMaxSuggestionCount calls android.view.inputmethod.InlineSuggestionsRequest$Builder.setMaxSuggestionCount.

func (*InlineSuggestionsRequestBuilder) SetSupportedLocales ¶ added in v0.0.7

func (m *InlineSuggestionsRequestBuilder) SetSupportedLocales(arg0 *jni.Object) (*jni.Object, error)

SetSupportedLocales calls android.view.inputmethod.InlineSuggestionsRequest$Builder.setSupportedLocales.

func (*InlineSuggestionsRequestBuilder) ToString ¶ added in v0.0.8

func (m *InlineSuggestionsRequestBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.InlineSuggestionsRequest$Builder.toString.

type InlineSuggestionsResponse ¶ added in v0.0.7

type InlineSuggestionsResponse struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InlineSuggestionsResponse wraps android.view.inputmethod.InlineSuggestionsResponse.

func (*InlineSuggestionsResponse) DescribeContents ¶ added in v0.0.7

func (m *InlineSuggestionsResponse) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InlineSuggestionsResponse.describeContents.

func (*InlineSuggestionsResponse) Equals ¶ added in v0.0.7

func (m *InlineSuggestionsResponse) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InlineSuggestionsResponse.equals.

func (*InlineSuggestionsResponse) GetInlineSuggestions ¶ added in v0.0.8

func (m *InlineSuggestionsResponse) GetInlineSuggestions() (*jni.Object, error)

GetInlineSuggestions calls android.view.inputmethod.InlineSuggestionsResponse.getInlineSuggestions.

func (*InlineSuggestionsResponse) HashCode ¶ added in v0.0.7

func (m *InlineSuggestionsResponse) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InlineSuggestionsResponse.hashCode.

func (*InlineSuggestionsResponse) ToString ¶ added in v0.0.7

func (m *InlineSuggestionsResponse) ToString() (string, error)

ToString calls android.view.inputmethod.InlineSuggestionsResponse.toString.

func (*InlineSuggestionsResponse) WriteToParcel ¶ added in v0.0.7

func (m *InlineSuggestionsResponse) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InlineSuggestionsResponse.writeToParcel.

type InputBinding ¶ added in v0.0.7

type InputBinding struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputBinding wraps android.view.inputmethod.InputBinding.

func NewInputBinding ¶ added in v0.0.7

func NewInputBinding(vm *jni.VM, arg0 *jni.Object, arg1 *jni.Object, arg2 int32, arg3 int32) (*InputBinding, error)

NewInputBinding creates a new android.view.inputmethod.InputBinding instance.

func (*InputBinding) DescribeContents ¶ added in v0.0.7

func (m *InputBinding) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InputBinding.describeContents.

func (*InputBinding) GetConnection ¶ added in v0.0.7

func (m *InputBinding) GetConnection() (*jni.Object, error)

GetConnection calls android.view.inputmethod.InputBinding.getConnection.

func (*InputBinding) GetConnectionToken ¶ added in v0.0.7

func (m *InputBinding) GetConnectionToken() (*jni.Object, error)

GetConnectionToken calls android.view.inputmethod.InputBinding.getConnectionToken.

func (*InputBinding) GetPid ¶ added in v0.0.7

func (m *InputBinding) GetPid() (int32, error)

GetPid calls android.view.inputmethod.InputBinding.getPid.

func (*InputBinding) GetUid ¶ added in v0.0.7

func (m *InputBinding) GetUid() (int32, error)

GetUid calls android.view.inputmethod.InputBinding.getUid.

func (*InputBinding) ToString ¶ added in v0.0.7

func (m *InputBinding) ToString() (string, error)

ToString calls android.view.inputmethod.InputBinding.toString.

func (*InputBinding) WriteToParcel ¶ added in v0.0.7

func (m *InputBinding) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InputBinding.writeToParcel.

type InputConnection ¶ added in v0.0.7

type InputConnection struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputConnection wraps android.view.inputmethod.InputConnection.

func (*InputConnection) BeginBatchEdit ¶ added in v0.0.7

func (m *InputConnection) BeginBatchEdit() (bool, error)

BeginBatchEdit calls android.view.inputmethod.InputConnection.beginBatchEdit.

func (*InputConnection) ClearMetaKeyStates ¶ added in v0.0.7

func (m *InputConnection) ClearMetaKeyStates(arg0 int32) (bool, error)

ClearMetaKeyStates calls android.view.inputmethod.InputConnection.clearMetaKeyStates.

func (*InputConnection) CloseConnection ¶ added in v0.0.7

func (m *InputConnection) CloseConnection() error

CloseConnection calls android.view.inputmethod.InputConnection.closeConnection.

func (*InputConnection) CommitCompletion ¶ added in v0.0.7

func (m *InputConnection) CommitCompletion(arg0 *jni.Object) (bool, error)

CommitCompletion calls android.view.inputmethod.InputConnection.commitCompletion.

func (*InputConnection) CommitContent ¶ added in v0.0.7

func (m *InputConnection) CommitContent(
	arg0 *jni.Object,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

CommitContent calls android.view.inputmethod.InputConnection.commitContent.

func (*InputConnection) CommitCorrection ¶ added in v0.0.7

func (m *InputConnection) CommitCorrection(arg0 *jni.Object) (bool, error)

CommitCorrection calls android.view.inputmethod.InputConnection.commitCorrection.

func (*InputConnection) CommitText ¶ added in v0.0.7

func (m *InputConnection) CommitText(arg0 string, arg1 int32) (bool, error)

CommitText calls android.view.inputmethod.InputConnection.commitText.

func (*InputConnection) DeleteSurroundingText ¶ added in v0.0.7

func (m *InputConnection) DeleteSurroundingText(arg0 int32, arg1 int32) (bool, error)

DeleteSurroundingText calls android.view.inputmethod.InputConnection.deleteSurroundingText.

func (*InputConnection) DeleteSurroundingTextInCodePoints ¶ added in v0.0.7

func (m *InputConnection) DeleteSurroundingTextInCodePoints(arg0 int32, arg1 int32) (bool, error)

DeleteSurroundingTextInCodePoints calls android.view.inputmethod.InputConnection.deleteSurroundingTextInCodePoints.

func (*InputConnection) EndBatchEdit ¶ added in v0.0.7

func (m *InputConnection) EndBatchEdit() (bool, error)

EndBatchEdit calls android.view.inputmethod.InputConnection.endBatchEdit.

func (*InputConnection) FinishComposingText ¶ added in v0.0.7

func (m *InputConnection) FinishComposingText() (bool, error)

FinishComposingText calls android.view.inputmethod.InputConnection.finishComposingText.

func (*InputConnection) GetCursorCapsMode ¶ added in v0.0.7

func (m *InputConnection) GetCursorCapsMode(arg0 int32) (int32, error)

GetCursorCapsMode calls android.view.inputmethod.InputConnection.getCursorCapsMode.

func (*InputConnection) GetExtractedText ¶ added in v0.0.7

func (m *InputConnection) GetExtractedText(arg0 *jni.Object, arg1 int32) (*jni.Object, error)

GetExtractedText calls android.view.inputmethod.InputConnection.getExtractedText.

func (*InputConnection) GetHandler ¶ added in v0.0.7

func (m *InputConnection) GetHandler() (*jni.Object, error)

GetHandler calls android.view.inputmethod.InputConnection.getHandler.

func (*InputConnection) GetSelectedText ¶ added in v0.0.7

func (m *InputConnection) GetSelectedText(arg0 int32) (*jni.Object, error)

GetSelectedText calls android.view.inputmethod.InputConnection.getSelectedText.

func (*InputConnection) GetTextAfterCursor ¶ added in v0.0.7

func (m *InputConnection) GetTextAfterCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetTextAfterCursor calls android.view.inputmethod.InputConnection.getTextAfterCursor.

func (*InputConnection) GetTextBeforeCursor ¶ added in v0.0.7

func (m *InputConnection) GetTextBeforeCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetTextBeforeCursor calls android.view.inputmethod.InputConnection.getTextBeforeCursor.

func (*InputConnection) PerformContextMenuAction ¶ added in v0.0.7

func (m *InputConnection) PerformContextMenuAction(arg0 int32) (bool, error)

PerformContextMenuAction calls android.view.inputmethod.InputConnection.performContextMenuAction.

func (*InputConnection) PerformEditorAction ¶ added in v0.0.7

func (m *InputConnection) PerformEditorAction(arg0 int32) (bool, error)

PerformEditorAction calls android.view.inputmethod.InputConnection.performEditorAction.

func (*InputConnection) PerformPrivateCommand ¶ added in v0.0.7

func (m *InputConnection) PerformPrivateCommand(arg0 string, arg1 *jni.Object) (bool, error)

PerformPrivateCommand calls android.view.inputmethod.InputConnection.performPrivateCommand.

func (*InputConnection) ReportFullscreenMode ¶ added in v0.0.7

func (m *InputConnection) ReportFullscreenMode(arg0 bool) (bool, error)

ReportFullscreenMode calls android.view.inputmethod.InputConnection.reportFullscreenMode.

func (*InputConnection) RequestCursorUpdates ¶ added in v0.0.7

func (m *InputConnection) RequestCursorUpdates(arg0 int32) (bool, error)

RequestCursorUpdates calls android.view.inputmethod.InputConnection.requestCursorUpdates.

func (*InputConnection) SendKeyEvent ¶ added in v0.0.7

func (m *InputConnection) SendKeyEvent(arg0 *jni.Object) (bool, error)

SendKeyEvent calls android.view.inputmethod.InputConnection.sendKeyEvent.

func (*InputConnection) SetComposingRegion ¶ added in v0.0.7

func (m *InputConnection) SetComposingRegion(arg0 int32, arg1 int32) (bool, error)

SetComposingRegion calls android.view.inputmethod.InputConnection.setComposingRegion.

func (*InputConnection) SetComposingText ¶ added in v0.0.7

func (m *InputConnection) SetComposingText(arg0 string, arg1 int32) (bool, error)

SetComposingText calls android.view.inputmethod.InputConnection.setComposingText.

func (*InputConnection) SetSelection ¶ added in v0.0.7

func (m *InputConnection) SetSelection(arg0 int32, arg1 int32) (bool, error)

SetSelection calls android.view.inputmethod.InputConnection.setSelection.

func (*InputConnection) ToString ¶ added in v0.0.8

func (m *InputConnection) ToString() (string, error)

ToString calls android.view.inputmethod.InputConnection.toString.

type InputConnectionWrapper ¶ added in v0.0.7

type InputConnectionWrapper struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputConnectionWrapper wraps android.view.inputmethod.InputConnectionWrapper.

func NewInputConnectionWrapper ¶ added in v0.0.7

func NewInputConnectionWrapper(vm *jni.VM, arg0 *jni.Object, arg1 bool) (*InputConnectionWrapper, error)

NewInputConnectionWrapper creates a new android.view.inputmethod.InputConnectionWrapper instance.

func (*InputConnectionWrapper) BeginBatchEdit ¶ added in v0.0.7

func (m *InputConnectionWrapper) BeginBatchEdit() (bool, error)

BeginBatchEdit calls android.view.inputmethod.InputConnectionWrapper.beginBatchEdit.

func (*InputConnectionWrapper) ClearMetaKeyStates ¶ added in v0.0.7

func (m *InputConnectionWrapper) ClearMetaKeyStates(arg0 int32) (bool, error)

ClearMetaKeyStates calls android.view.inputmethod.InputConnectionWrapper.clearMetaKeyStates.

func (*InputConnectionWrapper) CloseConnection ¶ added in v0.0.7

func (m *InputConnectionWrapper) CloseConnection() error

CloseConnection calls android.view.inputmethod.InputConnectionWrapper.closeConnection.

func (*InputConnectionWrapper) CommitCompletion ¶ added in v0.0.7

func (m *InputConnectionWrapper) CommitCompletion(arg0 *jni.Object) (bool, error)

CommitCompletion calls android.view.inputmethod.InputConnectionWrapper.commitCompletion.

func (*InputConnectionWrapper) CommitContent ¶ added in v0.0.7

func (m *InputConnectionWrapper) CommitContent(
	arg0 *jni.Object,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

CommitContent calls android.view.inputmethod.InputConnectionWrapper.commitContent.

func (*InputConnectionWrapper) CommitCorrection ¶ added in v0.0.7

func (m *InputConnectionWrapper) CommitCorrection(arg0 *jni.Object) (bool, error)

CommitCorrection calls android.view.inputmethod.InputConnectionWrapper.commitCorrection.

func (*InputConnectionWrapper) CommitText2 ¶ added in v0.0.7

func (m *InputConnectionWrapper) CommitText2(arg0 string, arg1 int32) (bool, error)

CommitText2 calls android.view.inputmethod.InputConnectionWrapper.commitText.

func (*InputConnectionWrapper) CommitText3_1 ¶ added in v0.0.7

func (m *InputConnectionWrapper) CommitText3_1(
	arg0 string,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

CommitText3_1 calls android.view.inputmethod.InputConnectionWrapper.commitText.

func (*InputConnectionWrapper) DeleteSurroundingText ¶ added in v0.0.7

func (m *InputConnectionWrapper) DeleteSurroundingText(arg0 int32, arg1 int32) (bool, error)

DeleteSurroundingText calls android.view.inputmethod.InputConnectionWrapper.deleteSurroundingText.

func (*InputConnectionWrapper) DeleteSurroundingTextInCodePoints ¶ added in v0.0.7

func (m *InputConnectionWrapper) DeleteSurroundingTextInCodePoints(arg0 int32, arg1 int32) (bool, error)

DeleteSurroundingTextInCodePoints calls android.view.inputmethod.InputConnectionWrapper.deleteSurroundingTextInCodePoints.

func (*InputConnectionWrapper) EndBatchEdit ¶ added in v0.0.7

func (m *InputConnectionWrapper) EndBatchEdit() (bool, error)

EndBatchEdit calls android.view.inputmethod.InputConnectionWrapper.endBatchEdit.

func (*InputConnectionWrapper) FinishComposingText ¶ added in v0.0.7

func (m *InputConnectionWrapper) FinishComposingText() (bool, error)

FinishComposingText calls android.view.inputmethod.InputConnectionWrapper.finishComposingText.

func (*InputConnectionWrapper) GetCursorCapsMode ¶ added in v0.0.7

func (m *InputConnectionWrapper) GetCursorCapsMode(arg0 int32) (int32, error)

GetCursorCapsMode calls android.view.inputmethod.InputConnectionWrapper.getCursorCapsMode.

func (*InputConnectionWrapper) GetExtractedText ¶ added in v0.0.7

func (m *InputConnectionWrapper) GetExtractedText(arg0 *jni.Object, arg1 int32) (*jni.Object, error)

GetExtractedText calls android.view.inputmethod.InputConnectionWrapper.getExtractedText.

func (*InputConnectionWrapper) GetHandler ¶ added in v0.0.7

func (m *InputConnectionWrapper) GetHandler() (*jni.Object, error)

GetHandler calls android.view.inputmethod.InputConnectionWrapper.getHandler.

func (*InputConnectionWrapper) GetSelectedText ¶ added in v0.0.7

func (m *InputConnectionWrapper) GetSelectedText(arg0 int32) (*jni.Object, error)

GetSelectedText calls android.view.inputmethod.InputConnectionWrapper.getSelectedText.

func (*InputConnectionWrapper) GetSurroundingText ¶ added in v0.0.7

func (m *InputConnectionWrapper) GetSurroundingText(
	arg0 int32,
	arg1 int32,
	arg2 int32,
) (*jni.Object, error)

GetSurroundingText calls android.view.inputmethod.InputConnectionWrapper.getSurroundingText.

func (*InputConnectionWrapper) GetTextAfterCursor ¶ added in v0.0.7

func (m *InputConnectionWrapper) GetTextAfterCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetTextAfterCursor calls android.view.inputmethod.InputConnectionWrapper.getTextAfterCursor.

func (*InputConnectionWrapper) GetTextBeforeCursor ¶ added in v0.0.7

func (m *InputConnectionWrapper) GetTextBeforeCursor(arg0 int32, arg1 int32) (*jni.Object, error)

GetTextBeforeCursor calls android.view.inputmethod.InputConnectionWrapper.getTextBeforeCursor.

func (*InputConnectionWrapper) PerformContextMenuAction ¶ added in v0.0.7

func (m *InputConnectionWrapper) PerformContextMenuAction(arg0 int32) (bool, error)

PerformContextMenuAction calls android.view.inputmethod.InputConnectionWrapper.performContextMenuAction.

func (*InputConnectionWrapper) PerformEditorAction ¶ added in v0.0.7

func (m *InputConnectionWrapper) PerformEditorAction(arg0 int32) (bool, error)

PerformEditorAction calls android.view.inputmethod.InputConnectionWrapper.performEditorAction.

func (*InputConnectionWrapper) PerformHandwritingGesture ¶ added in v0.0.7

func (m *InputConnectionWrapper) PerformHandwritingGesture(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

PerformHandwritingGesture calls android.view.inputmethod.InputConnectionWrapper.performHandwritingGesture.

func (*InputConnectionWrapper) PerformPrivateCommand ¶ added in v0.0.7

func (m *InputConnectionWrapper) PerformPrivateCommand(arg0 string, arg1 *jni.Object) (bool, error)

PerformPrivateCommand calls android.view.inputmethod.InputConnectionWrapper.performPrivateCommand.

func (*InputConnectionWrapper) PerformSpellCheck ¶ added in v0.0.7

func (m *InputConnectionWrapper) PerformSpellCheck() (bool, error)

PerformSpellCheck calls android.view.inputmethod.InputConnectionWrapper.performSpellCheck.

func (*InputConnectionWrapper) PreviewHandwritingGesture ¶ added in v0.0.7

func (m *InputConnectionWrapper) PreviewHandwritingGesture(arg0 *jni.Object, arg1 *jni.Object) (bool, error)

PreviewHandwritingGesture calls android.view.inputmethod.InputConnectionWrapper.previewHandwritingGesture.

func (*InputConnectionWrapper) ReplaceText ¶ added in v0.0.7

func (m *InputConnectionWrapper) ReplaceText(
	arg0 int32,
	arg1 int32,
	arg2 string,
	arg3 int32,
	arg4 *jni.Object,
) (bool, error)

ReplaceText calls android.view.inputmethod.InputConnectionWrapper.replaceText.

func (*InputConnectionWrapper) ReportFullscreenMode ¶ added in v0.0.7

func (m *InputConnectionWrapper) ReportFullscreenMode(arg0 bool) (bool, error)

ReportFullscreenMode calls android.view.inputmethod.InputConnectionWrapper.reportFullscreenMode.

func (*InputConnectionWrapper) RequestCursorUpdates1 ¶ added in v0.0.7

func (m *InputConnectionWrapper) RequestCursorUpdates1(arg0 int32) (bool, error)

RequestCursorUpdates1 calls android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates.

func (*InputConnectionWrapper) RequestCursorUpdates2_1 ¶ added in v0.0.7

func (m *InputConnectionWrapper) RequestCursorUpdates2_1(arg0 int32, arg1 int32) (bool, error)

RequestCursorUpdates2_1 calls android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates.

func (*InputConnectionWrapper) SendKeyEvent ¶ added in v0.0.7

func (m *InputConnectionWrapper) SendKeyEvent(arg0 *jni.Object) (bool, error)

SendKeyEvent calls android.view.inputmethod.InputConnectionWrapper.sendKeyEvent.

func (*InputConnectionWrapper) SetComposingRegion2 ¶ added in v0.0.7

func (m *InputConnectionWrapper) SetComposingRegion2(arg0 int32, arg1 int32) (bool, error)

SetComposingRegion2 calls android.view.inputmethod.InputConnectionWrapper.setComposingRegion.

func (*InputConnectionWrapper) SetComposingRegion3_1 ¶ added in v0.0.7

func (m *InputConnectionWrapper) SetComposingRegion3_1(
	arg0 int32,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

SetComposingRegion3_1 calls android.view.inputmethod.InputConnectionWrapper.setComposingRegion.

func (*InputConnectionWrapper) SetComposingText2 ¶ added in v0.0.7

func (m *InputConnectionWrapper) SetComposingText2(arg0 string, arg1 int32) (bool, error)

SetComposingText2 calls android.view.inputmethod.InputConnectionWrapper.setComposingText.

func (*InputConnectionWrapper) SetComposingText3_1 ¶ added in v0.0.7

func (m *InputConnectionWrapper) SetComposingText3_1(
	arg0 string,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

SetComposingText3_1 calls android.view.inputmethod.InputConnectionWrapper.setComposingText.

func (*InputConnectionWrapper) SetImeConsumesInput ¶ added in v0.0.7

func (m *InputConnectionWrapper) SetImeConsumesInput(arg0 bool) (bool, error)

SetImeConsumesInput calls android.view.inputmethod.InputConnectionWrapper.setImeConsumesInput.

func (*InputConnectionWrapper) SetSelection ¶ added in v0.0.7

func (m *InputConnectionWrapper) SetSelection(arg0 int32, arg1 int32) (bool, error)

SetSelection calls android.view.inputmethod.InputConnectionWrapper.setSelection.

func (*InputConnectionWrapper) SetTarget ¶ added in v0.0.7

func (m *InputConnectionWrapper) SetTarget(arg0 *jni.Object) error

SetTarget calls android.view.inputmethod.InputConnectionWrapper.setTarget.

func (*InputConnectionWrapper) TakeSnapshot ¶ added in v0.0.7

func (m *InputConnectionWrapper) TakeSnapshot() (*jni.Object, error)

TakeSnapshot calls android.view.inputmethod.InputConnectionWrapper.takeSnapshot.

func (*InputConnectionWrapper) ToString ¶ added in v0.0.8

func (m *InputConnectionWrapper) ToString() (string, error)

ToString calls android.view.inputmethod.InputConnectionWrapper.toString.

type InputContentInfo ¶ added in v0.0.7

type InputContentInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputContentInfo wraps android.view.inputmethod.InputContentInfo.

func NewInputContentInfo ¶ added in v0.0.7

func NewInputContentInfo(vm *jni.VM, arg0 *jni.Object, arg1 *jni.Object) (*InputContentInfo, error)

NewInputContentInfo creates a new android.view.inputmethod.InputContentInfo instance.

func (*InputContentInfo) DescribeContents ¶ added in v0.0.7

func (m *InputContentInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InputContentInfo.describeContents.

func (*InputContentInfo) GetContentUri ¶ added in v0.0.7

func (m *InputContentInfo) GetContentUri() (*jni.Object, error)

GetContentUri calls android.view.inputmethod.InputContentInfo.getContentUri.

func (*InputContentInfo) GetDescription ¶ added in v0.0.7

func (m *InputContentInfo) GetDescription() (*jni.Object, error)

GetDescription calls android.view.inputmethod.InputContentInfo.getDescription.

func (*InputContentInfo) GetLinkUri ¶ added in v0.0.7

func (m *InputContentInfo) GetLinkUri() (*jni.Object, error)

GetLinkUri calls android.view.inputmethod.InputContentInfo.getLinkUri.

func (*InputContentInfo) ReleasePermission ¶ added in v0.0.7

func (m *InputContentInfo) ReleasePermission() error

ReleasePermission calls android.view.inputmethod.InputContentInfo.releasePermission.

func (*InputContentInfo) RequestPermission ¶ added in v0.0.7

func (m *InputContentInfo) RequestPermission() error

RequestPermission calls android.view.inputmethod.InputContentInfo.requestPermission.

func (*InputContentInfo) ToString ¶ added in v0.0.8

func (m *InputContentInfo) ToString() (string, error)

ToString calls android.view.inputmethod.InputContentInfo.toString.

func (*InputContentInfo) WriteToParcel ¶ added in v0.0.7

func (m *InputContentInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InputContentInfo.writeToParcel.

type InputMethod ¶ added in v0.0.7

type InputMethod struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputMethod wraps android.view.inputmethod.InputMethod.

func (*InputMethod) AttachToken ¶ added in v0.0.7

func (m *InputMethod) AttachToken(arg0 *jni.Object) error

AttachToken calls android.view.inputmethod.InputMethod.attachToken.

func (*InputMethod) BindInput ¶ added in v0.0.7

func (m *InputMethod) BindInput(arg0 *jni.Object) error

BindInput calls android.view.inputmethod.InputMethod.bindInput.

func (*InputMethod) ChangeInputMethodSubtype ¶ added in v0.0.7

func (m *InputMethod) ChangeInputMethodSubtype(arg0 *jni.Object) error

ChangeInputMethodSubtype calls android.view.inputmethod.InputMethod.changeInputMethodSubtype.

func (*InputMethod) CreateSession ¶ added in v0.0.7

func (m *InputMethod) CreateSession(arg0 *jni.Object) error

CreateSession calls android.view.inputmethod.InputMethod.createSession.

func (*InputMethod) HideSoftInput ¶ added in v0.0.7

func (m *InputMethod) HideSoftInput(arg0 int32, arg1 *jni.Object) error

HideSoftInput calls android.view.inputmethod.InputMethod.hideSoftInput.

func (*InputMethod) RestartInput ¶ added in v0.0.7

func (m *InputMethod) RestartInput(arg0 *jni.Object, arg1 *jni.Object) error

RestartInput calls android.view.inputmethod.InputMethod.restartInput.

func (*InputMethod) RevokeSession ¶ added in v0.0.7

func (m *InputMethod) RevokeSession(arg0 *jni.Object) error

RevokeSession calls android.view.inputmethod.InputMethod.revokeSession.

func (*InputMethod) SetSessionEnabled ¶ added in v0.0.7

func (m *InputMethod) SetSessionEnabled(arg0 *jni.Object, arg1 bool) error

SetSessionEnabled calls android.view.inputmethod.InputMethod.setSessionEnabled.

func (*InputMethod) ShowSoftInput ¶ added in v0.0.7

func (m *InputMethod) ShowSoftInput(arg0 int32, arg1 *jni.Object) error

ShowSoftInput calls android.view.inputmethod.InputMethod.showSoftInput.

func (*InputMethod) StartInput ¶ added in v0.0.7

func (m *InputMethod) StartInput(arg0 *jni.Object, arg1 *jni.Object) error

StartInput calls android.view.inputmethod.InputMethod.startInput.

func (*InputMethod) ToString ¶ added in v0.0.8

func (m *InputMethod) ToString() (string, error)

ToString calls android.view.inputmethod.InputMethod.toString.

func (*InputMethod) UnbindInput ¶ added in v0.0.7

func (m *InputMethod) UnbindInput() error

UnbindInput calls android.view.inputmethod.InputMethod.unbindInput.

type InputMethodInfo ¶ added in v0.0.7

type InputMethodInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputMethodInfo wraps android.view.inputmethod.InputMethodInfo.

func NewInputMethodInfo ¶ added in v0.0.7

func NewInputMethodInfo(vm *jni.VM, arg0 *jni.Object, arg1 *jni.Object) (*InputMethodInfo, error)

NewInputMethodInfo creates a new android.view.inputmethod.InputMethodInfo instance.

func (*InputMethodInfo) CreateImeLanguageSettingsActivityIntent ¶ added in v0.0.7

func (m *InputMethodInfo) CreateImeLanguageSettingsActivityIntent() (*jni.Object, error)

CreateImeLanguageSettingsActivityIntent calls android.view.inputmethod.InputMethodInfo.createImeLanguageSettingsActivityIntent.

func (*InputMethodInfo) CreateStylusHandwritingSettingsActivityIntent ¶ added in v0.0.7

func (m *InputMethodInfo) CreateStylusHandwritingSettingsActivityIntent() (*jni.Object, error)

CreateStylusHandwritingSettingsActivityIntent calls android.view.inputmethod.InputMethodInfo.createStylusHandwritingSettingsActivityIntent.

func (*InputMethodInfo) DescribeContents ¶ added in v0.0.7

func (m *InputMethodInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InputMethodInfo.describeContents.

func (*InputMethodInfo) Dump ¶ added in v0.0.7

func (m *InputMethodInfo) Dump(arg0 *jni.Object, arg1 string) error

Dump calls android.view.inputmethod.InputMethodInfo.dump.

func (*InputMethodInfo) Equals ¶ added in v0.0.7

func (m *InputMethodInfo) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InputMethodInfo.equals.

func (*InputMethodInfo) GetComponent ¶ added in v0.0.7

func (m *InputMethodInfo) GetComponent() (*jni.Object, error)

GetComponent calls android.view.inputmethod.InputMethodInfo.getComponent.

func (*InputMethodInfo) GetConfigChanges ¶ added in v0.0.7

func (m *InputMethodInfo) GetConfigChanges() (int32, error)

GetConfigChanges calls android.view.inputmethod.InputMethodInfo.getConfigChanges.

func (*InputMethodInfo) GetId ¶ added in v0.0.7

func (m *InputMethodInfo) GetId() (string, error)

GetId calls android.view.inputmethod.InputMethodInfo.getId.

func (*InputMethodInfo) GetIsDefaultResourceId ¶ added in v0.0.7

func (m *InputMethodInfo) GetIsDefaultResourceId() (int32, error)

GetIsDefaultResourceId calls android.view.inputmethod.InputMethodInfo.getIsDefaultResourceId.

func (*InputMethodInfo) GetPackageName ¶ added in v0.0.7

func (m *InputMethodInfo) GetPackageName() (string, error)

GetPackageName calls android.view.inputmethod.InputMethodInfo.getPackageName.

func (*InputMethodInfo) GetServiceInfo ¶ added in v0.0.7

func (m *InputMethodInfo) GetServiceInfo() (*jni.Object, error)

GetServiceInfo calls android.view.inputmethod.InputMethodInfo.getServiceInfo.

func (*InputMethodInfo) GetServiceName ¶ added in v0.0.7

func (m *InputMethodInfo) GetServiceName() (string, error)

GetServiceName calls android.view.inputmethod.InputMethodInfo.getServiceName.

func (*InputMethodInfo) GetSettingsActivity ¶ added in v0.0.7

func (m *InputMethodInfo) GetSettingsActivity() (string, error)

GetSettingsActivity calls android.view.inputmethod.InputMethodInfo.getSettingsActivity.

func (*InputMethodInfo) GetSubtypeAt ¶ added in v0.0.7

func (m *InputMethodInfo) GetSubtypeAt(arg0 int32) (*jni.Object, error)

GetSubtypeAt calls android.view.inputmethod.InputMethodInfo.getSubtypeAt.

func (*InputMethodInfo) GetSubtypeCount ¶ added in v0.0.7

func (m *InputMethodInfo) GetSubtypeCount() (int32, error)

GetSubtypeCount calls android.view.inputmethod.InputMethodInfo.getSubtypeCount.

func (*InputMethodInfo) HashCode ¶ added in v0.0.7

func (m *InputMethodInfo) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InputMethodInfo.hashCode.

func (*InputMethodInfo) LoadIcon ¶ added in v0.0.7

func (m *InputMethodInfo) LoadIcon(arg0 *jni.Object) (*jni.Object, error)

LoadIcon calls android.view.inputmethod.InputMethodInfo.loadIcon.

func (*InputMethodInfo) LoadLabel ¶ added in v0.0.7

func (m *InputMethodInfo) LoadLabel(arg0 *jni.Object) (*jni.Object, error)

LoadLabel calls android.view.inputmethod.InputMethodInfo.loadLabel.

func (*InputMethodInfo) ShouldShowInInputMethodPicker ¶ added in v0.0.7

func (m *InputMethodInfo) ShouldShowInInputMethodPicker() (bool, error)

ShouldShowInInputMethodPicker calls android.view.inputmethod.InputMethodInfo.shouldShowInInputMethodPicker.

func (*InputMethodInfo) SupportsConnectionlessStylusHandwriting ¶ added in v0.0.7

func (m *InputMethodInfo) SupportsConnectionlessStylusHandwriting() (bool, error)

SupportsConnectionlessStylusHandwriting calls android.view.inputmethod.InputMethodInfo.supportsConnectionlessStylusHandwriting.

func (*InputMethodInfo) SupportsStylusHandwriting ¶ added in v0.0.7

func (m *InputMethodInfo) SupportsStylusHandwriting() (bool, error)

SupportsStylusHandwriting calls android.view.inputmethod.InputMethodInfo.supportsStylusHandwriting.

func (*InputMethodInfo) SuppressesSpellChecker ¶ added in v0.0.7

func (m *InputMethodInfo) SuppressesSpellChecker() (bool, error)

SuppressesSpellChecker calls android.view.inputmethod.InputMethodInfo.suppressesSpellChecker.

func (*InputMethodInfo) ToString ¶ added in v0.0.7

func (m *InputMethodInfo) ToString() (string, error)

ToString calls android.view.inputmethod.InputMethodInfo.toString.

func (*InputMethodInfo) WriteToParcel ¶ added in v0.0.7

func (m *InputMethodInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InputMethodInfo.writeToParcel.

type InputMethodManager ¶ added in v0.0.4

type InputMethodManager struct {
	VM  *jni.VM
	Ctx *app.Context
	Obj *jni.GlobalRef
}

InputMethodManager wraps android.view.inputmethod.InputMethodManager.

func NewInputMethodManager ¶ added in v0.0.4

func NewInputMethodManager(ctx *app.Context) (*InputMethodManager, error)

NewInputMethodManager obtains android.view.inputmethod.InputMethodManager from the Android system service manager.

func (*InputMethodManager) AcceptStylusHandwritingDelegation1 ¶ added in v0.0.4

func (m *InputMethodManager) AcceptStylusHandwritingDelegation1(arg0 *jni.Object) (bool, error)

AcceptStylusHandwritingDelegation1 calls android.view.inputmethod.InputMethodManager.acceptStylusHandwritingDelegation.

func (*InputMethodManager) AcceptStylusHandwritingDelegation2_1 ¶ added in v0.0.4

func (m *InputMethodManager) AcceptStylusHandwritingDelegation2_1(arg0 *jni.Object, arg1 string) (bool, error)

AcceptStylusHandwritingDelegation2_1 calls android.view.inputmethod.InputMethodManager.acceptStylusHandwritingDelegation.

func (*InputMethodManager) Close ¶ added in v0.0.4

func (m *InputMethodManager) Close()

Close releases the global reference to the underlying Java object. After Close, the InputMethodManager must not be used.

func (*InputMethodManager) DispatchKeyEventFromInputMethod ¶ added in v0.0.4

func (m *InputMethodManager) DispatchKeyEventFromInputMethod(arg0 *jni.Object, arg1 *jni.Object) error

DispatchKeyEventFromInputMethod calls android.view.inputmethod.InputMethodManager.dispatchKeyEventFromInputMethod.

func (*InputMethodManager) DisplayCompletions ¶ added in v0.0.4

func (m *InputMethodManager) DisplayCompletions(arg0 *jni.Object, arg1 *jni.Object) error

DisplayCompletions calls android.view.inputmethod.InputMethodManager.displayCompletions.

func (*InputMethodManager) GetCurrentInputMethodInfo ¶ added in v0.0.4

func (m *InputMethodManager) GetCurrentInputMethodInfo() (*jni.Object, error)

GetCurrentInputMethodInfo calls android.view.inputmethod.InputMethodManager.getCurrentInputMethodInfo.

func (*InputMethodManager) GetCurrentInputMethodSubtype ¶ added in v0.0.4

func (m *InputMethodManager) GetCurrentInputMethodSubtype() (*jni.Object, error)

GetCurrentInputMethodSubtype calls android.view.inputmethod.InputMethodManager.getCurrentInputMethodSubtype.

func (*InputMethodManager) GetEnabledInputMethodList ¶ added in v0.0.4

func (m *InputMethodManager) GetEnabledInputMethodList() (*jni.Object, error)

GetEnabledInputMethodList calls android.view.inputmethod.InputMethodManager.getEnabledInputMethodList.

func (*InputMethodManager) GetEnabledInputMethodSubtypeList ¶ added in v0.0.4

func (m *InputMethodManager) GetEnabledInputMethodSubtypeList(arg0 *jni.Object, arg1 bool) (*jni.Object, error)

GetEnabledInputMethodSubtypeList calls android.view.inputmethod.InputMethodManager.getEnabledInputMethodSubtypeList.

func (*InputMethodManager) GetInputMethodList ¶ added in v0.0.4

func (m *InputMethodManager) GetInputMethodList() (*jni.Object, error)

GetInputMethodList calls android.view.inputmethod.InputMethodManager.getInputMethodList.

func (*InputMethodManager) GetLastInputMethodSubtype ¶ added in v0.0.4

func (m *InputMethodManager) GetLastInputMethodSubtype() (*jni.Object, error)

GetLastInputMethodSubtype calls android.view.inputmethod.InputMethodManager.getLastInputMethodSubtype.

func (*InputMethodManager) HideSoftInputFromInputMethod ¶ added in v0.0.4

func (m *InputMethodManager) HideSoftInputFromInputMethod(arg0 *jni.Object, arg1 int32) error

HideSoftInputFromInputMethod calls android.view.inputmethod.InputMethodManager.hideSoftInputFromInputMethod.

func (*InputMethodManager) HideSoftInputFromWindow2 ¶ added in v0.0.4

func (m *InputMethodManager) HideSoftInputFromWindow2(arg0 *jni.Object, arg1 int32) (bool, error)

HideSoftInputFromWindow2 calls android.view.inputmethod.InputMethodManager.hideSoftInputFromWindow.

func (*InputMethodManager) HideSoftInputFromWindow3_1 ¶ added in v0.0.4

func (m *InputMethodManager) HideSoftInputFromWindow3_1(
	arg0 *jni.Object,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

HideSoftInputFromWindow3_1 calls android.view.inputmethod.InputMethodManager.hideSoftInputFromWindow.

func (*InputMethodManager) HideStatusIcon ¶ added in v0.0.4

func (m *InputMethodManager) HideStatusIcon(arg0 *jni.Object) error

HideStatusIcon calls android.view.inputmethod.InputMethodManager.hideStatusIcon.

func (*InputMethodManager) InvalidateInput ¶ added in v0.0.4

func (m *InputMethodManager) InvalidateInput(arg0 *jni.Object) error

InvalidateInput calls android.view.inputmethod.InputMethodManager.invalidateInput.

func (*InputMethodManager) IsAcceptingText ¶ added in v0.0.4

func (m *InputMethodManager) IsAcceptingText() (bool, error)

IsAcceptingText calls android.view.inputmethod.InputMethodManager.isAcceptingText.

func (*InputMethodManager) IsActive0 ¶ added in v0.0.4

func (m *InputMethodManager) IsActive0() (bool, error)

IsActive0 calls android.view.inputmethod.InputMethodManager.isActive.

func (*InputMethodManager) IsActive1_1 ¶ added in v0.0.4

func (m *InputMethodManager) IsActive1_1(arg0 *jni.Object) (bool, error)

IsActive1_1 calls android.view.inputmethod.InputMethodManager.isActive.

func (*InputMethodManager) IsConnectionlessStylusHandwritingAvailable ¶ added in v0.0.4

func (m *InputMethodManager) IsConnectionlessStylusHandwritingAvailable() (bool, error)

IsConnectionlessStylusHandwritingAvailable calls android.view.inputmethod.InputMethodManager.isConnectionlessStylusHandwritingAvailable.

func (*InputMethodManager) IsFullscreenMode ¶ added in v0.0.4

func (m *InputMethodManager) IsFullscreenMode() (bool, error)

IsFullscreenMode calls android.view.inputmethod.InputMethodManager.isFullscreenMode.

func (*InputMethodManager) IsInputMethodSuppressingSpellChecker ¶ added in v0.0.4

func (m *InputMethodManager) IsInputMethodSuppressingSpellChecker() (bool, error)

IsInputMethodSuppressingSpellChecker calls android.view.inputmethod.InputMethodManager.isInputMethodSuppressingSpellChecker.

func (*InputMethodManager) IsStylusHandwritingAvailable ¶ added in v0.0.4

func (m *InputMethodManager) IsStylusHandwritingAvailable() (bool, error)

IsStylusHandwritingAvailable calls android.view.inputmethod.InputMethodManager.isStylusHandwritingAvailable.

func (*InputMethodManager) IsWatchingCursor ¶ added in v0.0.4

func (m *InputMethodManager) IsWatchingCursor(arg0 *jni.Object) (bool, error)

IsWatchingCursor calls android.view.inputmethod.InputMethodManager.isWatchingCursor.

func (*InputMethodManager) PrepareStylusHandwritingDelegation1 ¶ added in v0.0.4

func (m *InputMethodManager) PrepareStylusHandwritingDelegation1(arg0 *jni.Object) error

PrepareStylusHandwritingDelegation1 calls android.view.inputmethod.InputMethodManager.prepareStylusHandwritingDelegation.

func (*InputMethodManager) PrepareStylusHandwritingDelegation2_1 ¶ added in v0.0.4

func (m *InputMethodManager) PrepareStylusHandwritingDelegation2_1(arg0 *jni.Object, arg1 string) error

PrepareStylusHandwritingDelegation2_1 calls android.view.inputmethod.InputMethodManager.prepareStylusHandwritingDelegation.

func (*InputMethodManager) RestartInput ¶ added in v0.0.4

func (m *InputMethodManager) RestartInput(arg0 *jni.Object) error

RestartInput calls android.view.inputmethod.InputMethodManager.restartInput.

func (*InputMethodManager) SendAppPrivateCommand ¶ added in v0.0.4

func (m *InputMethodManager) SendAppPrivateCommand(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) error

SendAppPrivateCommand calls android.view.inputmethod.InputMethodManager.sendAppPrivateCommand.

func (*InputMethodManager) SetAdditionalInputMethodSubtypes ¶ added in v0.0.4

func (m *InputMethodManager) SetAdditionalInputMethodSubtypes(arg0 string, arg1 *jni.Object) error

SetAdditionalInputMethodSubtypes calls android.view.inputmethod.InputMethodManager.setAdditionalInputMethodSubtypes.

func (*InputMethodManager) SetCurrentInputMethodSubtype ¶ added in v0.0.4

func (m *InputMethodManager) SetCurrentInputMethodSubtype(arg0 *jni.Object) (bool, error)

SetCurrentInputMethodSubtype calls android.view.inputmethod.InputMethodManager.setCurrentInputMethodSubtype.

func (*InputMethodManager) SetExplicitlyEnabledInputMethodSubtypes ¶ added in v0.0.4

func (m *InputMethodManager) SetExplicitlyEnabledInputMethodSubtypes(arg0 string, arg1 *jni.Object) error

SetExplicitlyEnabledInputMethodSubtypes calls android.view.inputmethod.InputMethodManager.setExplicitlyEnabledInputMethodSubtypes.

func (*InputMethodManager) SetInputMethod ¶ added in v0.0.4

func (m *InputMethodManager) SetInputMethod(arg0 *jni.Object, arg1 string) error

SetInputMethod calls android.view.inputmethod.InputMethodManager.setInputMethod.

func (*InputMethodManager) SetInputMethodAndSubtype ¶ added in v0.0.4

func (m *InputMethodManager) SetInputMethodAndSubtype(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) error

SetInputMethodAndSubtype calls android.view.inputmethod.InputMethodManager.setInputMethodAndSubtype.

func (*InputMethodManager) ShouldOfferSwitchingToNextInputMethod ¶ added in v0.0.4

func (m *InputMethodManager) ShouldOfferSwitchingToNextInputMethod(arg0 *jni.Object) (bool, error)

ShouldOfferSwitchingToNextInputMethod calls android.view.inputmethod.InputMethodManager.shouldOfferSwitchingToNextInputMethod.

func (*InputMethodManager) ShowInputMethodAndSubtypeEnabler ¶ added in v0.0.4

func (m *InputMethodManager) ShowInputMethodAndSubtypeEnabler(arg0 string) error

ShowInputMethodAndSubtypeEnabler calls android.view.inputmethod.InputMethodManager.showInputMethodAndSubtypeEnabler.

func (*InputMethodManager) ShowInputMethodPicker ¶ added in v0.0.4

func (m *InputMethodManager) ShowInputMethodPicker() error

ShowInputMethodPicker calls android.view.inputmethod.InputMethodManager.showInputMethodPicker.

func (*InputMethodManager) ShowSoftInput2 ¶ added in v0.0.4

func (m *InputMethodManager) ShowSoftInput2(arg0 *jni.Object, arg1 int32) (bool, error)

ShowSoftInput2 calls android.view.inputmethod.InputMethodManager.showSoftInput.

func (*InputMethodManager) ShowSoftInput3_1 ¶ added in v0.0.4

func (m *InputMethodManager) ShowSoftInput3_1(
	arg0 *jni.Object,
	arg1 int32,
	arg2 *jni.Object,
) (bool, error)

ShowSoftInput3_1 calls android.view.inputmethod.InputMethodManager.showSoftInput.

func (*InputMethodManager) ShowSoftInputFromInputMethod ¶ added in v0.0.4

func (m *InputMethodManager) ShowSoftInputFromInputMethod(arg0 *jni.Object, arg1 int32) error

ShowSoftInputFromInputMethod calls android.view.inputmethod.InputMethodManager.showSoftInputFromInputMethod.

func (*InputMethodManager) ShowStatusIcon ¶ added in v0.0.4

func (m *InputMethodManager) ShowStatusIcon(
	arg0 *jni.Object,
	arg1 string,
	arg2 int32,
) error

ShowStatusIcon calls android.view.inputmethod.InputMethodManager.showStatusIcon.

func (*InputMethodManager) StartConnectionlessStylusHandwriting ¶ added in v0.0.4

func (m *InputMethodManager) StartConnectionlessStylusHandwriting(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
	arg3 *jni.Object,
) error

StartConnectionlessStylusHandwriting calls android.view.inputmethod.InputMethodManager.startConnectionlessStylusHandwriting.

func (*InputMethodManager) StartConnectionlessStylusHandwritingForDelegation4_1 ¶ added in v0.0.4

func (m *InputMethodManager) StartConnectionlessStylusHandwritingForDelegation4_1(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
	arg3 *jni.Object,
) error

StartConnectionlessStylusHandwritingForDelegation4_1 calls android.view.inputmethod.InputMethodManager.startConnectionlessStylusHandwritingForDelegation.

func (*InputMethodManager) StartConnectionlessStylusHandwritingForDelegation5 ¶ added in v0.0.4

func (m *InputMethodManager) StartConnectionlessStylusHandwritingForDelegation5(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 string,
	arg3 *jni.Object,
	arg4 *jni.Object,
) error

StartConnectionlessStylusHandwritingForDelegation5 calls android.view.inputmethod.InputMethodManager.startConnectionlessStylusHandwritingForDelegation.

func (*InputMethodManager) StartStylusHandwriting ¶ added in v0.0.4

func (m *InputMethodManager) StartStylusHandwriting(arg0 *jni.Object) error

StartStylusHandwriting calls android.view.inputmethod.InputMethodManager.startStylusHandwriting.

func (*InputMethodManager) SwitchToLastInputMethod ¶ added in v0.0.4

func (m *InputMethodManager) SwitchToLastInputMethod(arg0 *jni.Object) (bool, error)

SwitchToLastInputMethod calls android.view.inputmethod.InputMethodManager.switchToLastInputMethod.

func (*InputMethodManager) SwitchToNextInputMethod ¶ added in v0.0.4

func (m *InputMethodManager) SwitchToNextInputMethod(arg0 *jni.Object, arg1 bool) (bool, error)

SwitchToNextInputMethod calls android.view.inputmethod.InputMethodManager.switchToNextInputMethod.

func (*InputMethodManager) ToString ¶ added in v0.0.8

func (m *InputMethodManager) ToString() (string, error)

ToString calls android.view.inputmethod.InputMethodManager.toString.

func (*InputMethodManager) ToggleSoftInput ¶ added in v0.0.4

func (m *InputMethodManager) ToggleSoftInput(arg0 int32, arg1 int32) error

ToggleSoftInput calls android.view.inputmethod.InputMethodManager.toggleSoftInput.

func (*InputMethodManager) ToggleSoftInputFromWindow ¶ added in v0.0.4

func (m *InputMethodManager) ToggleSoftInputFromWindow(
	arg0 *jni.Object,
	arg1 int32,
	arg2 int32,
) error

ToggleSoftInputFromWindow calls android.view.inputmethod.InputMethodManager.toggleSoftInputFromWindow.

func (*InputMethodManager) UpdateCursor ¶ added in v0.0.4

func (m *InputMethodManager) UpdateCursor(
	arg0 *jni.Object,
	arg1 int32,
	arg2 int32,
	arg3 int32,
	arg4 int32,
) error

UpdateCursor calls android.view.inputmethod.InputMethodManager.updateCursor.

func (*InputMethodManager) UpdateCursorAnchorInfo ¶ added in v0.0.4

func (m *InputMethodManager) UpdateCursorAnchorInfo(arg0 *jni.Object, arg1 *jni.Object) error

UpdateCursorAnchorInfo calls android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo.

func (*InputMethodManager) UpdateExtractedText ¶ added in v0.0.4

func (m *InputMethodManager) UpdateExtractedText(
	arg0 *jni.Object,
	arg1 int32,
	arg2 *jni.Object,
) error

UpdateExtractedText calls android.view.inputmethod.InputMethodManager.updateExtractedText.

func (*InputMethodManager) UpdateSelection ¶ added in v0.0.4

func (m *InputMethodManager) UpdateSelection(
	arg0 *jni.Object,
	arg1 int32,
	arg2 int32,
	arg3 int32,
	arg4 int32,
) error

UpdateSelection calls android.view.inputmethod.InputMethodManager.updateSelection.

func (*InputMethodManager) ViewClicked ¶ added in v0.0.4

func (m *InputMethodManager) ViewClicked(arg0 *jni.Object) error

ViewClicked calls android.view.inputmethod.InputMethodManager.viewClicked.

type InputMethodSession ¶ added in v0.0.7

type InputMethodSession struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputMethodSession wraps android.view.inputmethod.InputMethodSession.

func (*InputMethodSession) AppPrivateCommand ¶ added in v0.0.7

func (m *InputMethodSession) AppPrivateCommand(arg0 string, arg1 *jni.Object) error

AppPrivateCommand calls android.view.inputmethod.InputMethodSession.appPrivateCommand.

func (*InputMethodSession) DispatchGenericMotionEvent ¶ added in v0.0.7

func (m *InputMethodSession) DispatchGenericMotionEvent(
	arg0 int32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

DispatchGenericMotionEvent calls android.view.inputmethod.InputMethodSession.dispatchGenericMotionEvent.

func (*InputMethodSession) DispatchKeyEvent ¶ added in v0.0.7

func (m *InputMethodSession) DispatchKeyEvent(
	arg0 int32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

DispatchKeyEvent calls android.view.inputmethod.InputMethodSession.dispatchKeyEvent.

func (*InputMethodSession) DispatchTrackballEvent ¶ added in v0.0.7

func (m *InputMethodSession) DispatchTrackballEvent(
	arg0 int32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) error

DispatchTrackballEvent calls android.view.inputmethod.InputMethodSession.dispatchTrackballEvent.

func (*InputMethodSession) DisplayCompletions ¶ added in v0.0.7

func (m *InputMethodSession) DisplayCompletions(arg0 *jni.Object) error

DisplayCompletions calls android.view.inputmethod.InputMethodSession.displayCompletions.

func (*InputMethodSession) FinishInput ¶ added in v0.0.7

func (m *InputMethodSession) FinishInput() error

FinishInput calls android.view.inputmethod.InputMethodSession.finishInput.

func (*InputMethodSession) ToString ¶ added in v0.0.8

func (m *InputMethodSession) ToString() (string, error)

ToString calls android.view.inputmethod.InputMethodSession.toString.

func (*InputMethodSession) ToggleSoftInput ¶ added in v0.0.7

func (m *InputMethodSession) ToggleSoftInput(arg0 int32, arg1 int32) error

ToggleSoftInput calls android.view.inputmethod.InputMethodSession.toggleSoftInput.

func (*InputMethodSession) UpdateCursor ¶ added in v0.0.7

func (m *InputMethodSession) UpdateCursor(arg0 *jni.Object) error

UpdateCursor calls android.view.inputmethod.InputMethodSession.updateCursor.

func (*InputMethodSession) UpdateCursorAnchorInfo ¶ added in v0.0.7

func (m *InputMethodSession) UpdateCursorAnchorInfo(arg0 *jni.Object) error

UpdateCursorAnchorInfo calls android.view.inputmethod.InputMethodSession.updateCursorAnchorInfo.

func (*InputMethodSession) UpdateExtractedText ¶ added in v0.0.7

func (m *InputMethodSession) UpdateExtractedText(arg0 int32, arg1 *jni.Object) error

UpdateExtractedText calls android.view.inputmethod.InputMethodSession.updateExtractedText.

func (*InputMethodSession) UpdateSelection ¶ added in v0.0.7

func (m *InputMethodSession) UpdateSelection(
	arg0 int32,
	arg1 int32,
	arg2 int32,
	arg3 int32,
	arg4 int32,
	arg5 int32,
) error

UpdateSelection calls android.view.inputmethod.InputMethodSession.updateSelection.

func (*InputMethodSession) ViewClicked ¶ added in v0.0.7

func (m *InputMethodSession) ViewClicked(arg0 bool) error

ViewClicked calls android.view.inputmethod.InputMethodSession.viewClicked.

type InputMethodSessionCallback ¶ added in v0.0.7

type InputMethodSessionCallback struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputMethodSessionCallback wraps android.view.inputmethod.InputMethod$SessionCallback.

func (*InputMethodSessionCallback) SessionCreated ¶ added in v0.0.7

func (m *InputMethodSessionCallback) SessionCreated(arg0 *jni.Object) error

SessionCreated calls android.view.inputmethod.InputMethod$SessionCallback.sessionCreated.

func (*InputMethodSessionCallback) ToString ¶ added in v0.0.8

func (m *InputMethodSessionCallback) ToString() (string, error)

ToString calls android.view.inputmethod.InputMethod$SessionCallback.toString.

type InputMethodSessionEventCallback ¶ added in v0.0.7

type InputMethodSessionEventCallback struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputMethodSessionEventCallback wraps android.view.inputmethod.InputMethodSession$EventCallback.

func (*InputMethodSessionEventCallback) FinishedEvent ¶ added in v0.0.7

func (m *InputMethodSessionEventCallback) FinishedEvent(arg0 int32, arg1 bool) error

FinishedEvent calls android.view.inputmethod.InputMethodSession$EventCallback.finishedEvent.

func (*InputMethodSessionEventCallback) ToString ¶ added in v0.0.8

func (m *InputMethodSessionEventCallback) ToString() (string, error)

ToString calls android.view.inputmethod.InputMethodSession$EventCallback.toString.

type InputMethodSubtype ¶ added in v0.0.7

type InputMethodSubtype struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputMethodSubtype wraps android.view.inputmethod.InputMethodSubtype.

func NewInputMethodSubtype ¶ added in v0.0.7

func NewInputMethodSubtype(vm *jni.VM, arg0 int32, arg1 int32, arg2 string, arg3 string, arg4 string, arg5 bool, arg6 bool) (*InputMethodSubtype, error)

NewInputMethodSubtype creates a new android.view.inputmethod.InputMethodSubtype instance.

func (*InputMethodSubtype) ContainsExtraValueKey ¶ added in v0.0.7

func (m *InputMethodSubtype) ContainsExtraValueKey(arg0 string) (bool, error)

ContainsExtraValueKey calls android.view.inputmethod.InputMethodSubtype.containsExtraValueKey.

func (*InputMethodSubtype) DescribeContents ¶ added in v0.0.7

func (m *InputMethodSubtype) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InputMethodSubtype.describeContents.

func (*InputMethodSubtype) Equals ¶ added in v0.0.7

func (m *InputMethodSubtype) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InputMethodSubtype.equals.

func (*InputMethodSubtype) GetDisplayName ¶ added in v0.0.7

func (m *InputMethodSubtype) GetDisplayName(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

GetDisplayName calls android.view.inputmethod.InputMethodSubtype.getDisplayName.

func (*InputMethodSubtype) GetExtraValue ¶ added in v0.0.7

func (m *InputMethodSubtype) GetExtraValue() (string, error)

GetExtraValue calls android.view.inputmethod.InputMethodSubtype.getExtraValue.

func (*InputMethodSubtype) GetExtraValueOf ¶ added in v0.0.7

func (m *InputMethodSubtype) GetExtraValueOf(arg0 string) (string, error)

GetExtraValueOf calls android.view.inputmethod.InputMethodSubtype.getExtraValueOf.

func (*InputMethodSubtype) GetIconResId ¶ added in v0.0.7

func (m *InputMethodSubtype) GetIconResId() (int32, error)

GetIconResId calls android.view.inputmethod.InputMethodSubtype.getIconResId.

func (*InputMethodSubtype) GetLanguageTag ¶ added in v0.0.7

func (m *InputMethodSubtype) GetLanguageTag() (string, error)

GetLanguageTag calls android.view.inputmethod.InputMethodSubtype.getLanguageTag.

func (*InputMethodSubtype) GetLayoutDisplayName ¶ added in v0.0.7

func (m *InputMethodSubtype) GetLayoutDisplayName(arg0 *jni.Object, arg1 *jni.Object) (*jni.Object, error)

GetLayoutDisplayName calls android.view.inputmethod.InputMethodSubtype.getLayoutDisplayName.

func (*InputMethodSubtype) GetLayoutLabelNonLocalized ¶ added in v0.0.7

func (m *InputMethodSubtype) GetLayoutLabelNonLocalized() (*jni.Object, error)

GetLayoutLabelNonLocalized calls android.view.inputmethod.InputMethodSubtype.getLayoutLabelNonLocalized.

func (*InputMethodSubtype) GetLayoutLabelResource ¶ added in v0.0.7

func (m *InputMethodSubtype) GetLayoutLabelResource() (int32, error)

GetLayoutLabelResource calls android.view.inputmethod.InputMethodSubtype.getLayoutLabelResource.

func (*InputMethodSubtype) GetLocale ¶ added in v0.0.7

func (m *InputMethodSubtype) GetLocale() (string, error)

GetLocale calls android.view.inputmethod.InputMethodSubtype.getLocale.

func (*InputMethodSubtype) GetMode ¶ added in v0.0.7

func (m *InputMethodSubtype) GetMode() (string, error)

GetMode calls android.view.inputmethod.InputMethodSubtype.getMode.

func (*InputMethodSubtype) GetNameOverride ¶ added in v0.0.7

func (m *InputMethodSubtype) GetNameOverride() (*jni.Object, error)

GetNameOverride calls android.view.inputmethod.InputMethodSubtype.getNameOverride.

func (*InputMethodSubtype) GetNameResId ¶ added in v0.0.7

func (m *InputMethodSubtype) GetNameResId() (int32, error)

GetNameResId calls android.view.inputmethod.InputMethodSubtype.getNameResId.

func (*InputMethodSubtype) GetPhysicalKeyboardHintLanguageTag ¶ added in v0.0.7

func (m *InputMethodSubtype) GetPhysicalKeyboardHintLanguageTag() (*jni.Object, error)

GetPhysicalKeyboardHintLanguageTag calls android.view.inputmethod.InputMethodSubtype.getPhysicalKeyboardHintLanguageTag.

func (*InputMethodSubtype) GetPhysicalKeyboardHintLayoutType ¶ added in v0.0.7

func (m *InputMethodSubtype) GetPhysicalKeyboardHintLayoutType() (string, error)

GetPhysicalKeyboardHintLayoutType calls android.view.inputmethod.InputMethodSubtype.getPhysicalKeyboardHintLayoutType.

func (*InputMethodSubtype) HashCode ¶ added in v0.0.7

func (m *InputMethodSubtype) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InputMethodSubtype.hashCode.

func (*InputMethodSubtype) IsAsciiCapable ¶ added in v0.0.7

func (m *InputMethodSubtype) IsAsciiCapable() (bool, error)

IsAsciiCapable calls android.view.inputmethod.InputMethodSubtype.isAsciiCapable.

func (*InputMethodSubtype) IsAuxiliary ¶ added in v0.0.7

func (m *InputMethodSubtype) IsAuxiliary() (bool, error)

IsAuxiliary calls android.view.inputmethod.InputMethodSubtype.isAuxiliary.

func (*InputMethodSubtype) OverridesImplicitlyEnabledSubtype ¶ added in v0.0.7

func (m *InputMethodSubtype) OverridesImplicitlyEnabledSubtype() (bool, error)

OverridesImplicitlyEnabledSubtype calls android.view.inputmethod.InputMethodSubtype.overridesImplicitlyEnabledSubtype.

func (*InputMethodSubtype) ToString ¶ added in v0.0.8

func (m *InputMethodSubtype) ToString() (string, error)

ToString calls android.view.inputmethod.InputMethodSubtype.toString.

func (*InputMethodSubtype) WriteToParcel ¶ added in v0.0.7

func (m *InputMethodSubtype) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InputMethodSubtype.writeToParcel.

type InputMethodSubtypeInputMethodSubtypeBuilder ¶ added in v0.0.7

type InputMethodSubtypeInputMethodSubtypeBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InputMethodSubtypeInputMethodSubtypeBuilder wraps android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) Build ¶ added in v0.0.7

Build calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.build.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetIsAsciiCapable ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetIsAsciiCapable(arg0 bool) (*jni.Object, error)

SetIsAsciiCapable calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setIsAsciiCapable.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetIsAuxiliary ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetIsAuxiliary(arg0 bool) (*jni.Object, error)

SetIsAuxiliary calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setIsAuxiliary.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetLanguageTag ¶ added in v0.0.7

SetLanguageTag calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setLanguageTag.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetLayoutLabelNonLocalized ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetLayoutLabelNonLocalized(arg0 string) (*jni.Object, error)

SetLayoutLabelNonLocalized calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setLayoutLabelNonLocalized.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetLayoutLabelResource ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetLayoutLabelResource(arg0 int32) (*jni.Object, error)

SetLayoutLabelResource calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setLayoutLabelResource.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetOverridesImplicitlyEnabledSubtype ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetOverridesImplicitlyEnabledSubtype(arg0 bool) (*jni.Object, error)

SetOverridesImplicitlyEnabledSubtype calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setOverridesImplicitlyEnabledSubtype.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetPhysicalKeyboardHint ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetPhysicalKeyboardHint(arg0 *jni.Object, arg1 string) (*jni.Object, error)

SetPhysicalKeyboardHint calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setPhysicalKeyboardHint.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeExtraValue ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeExtraValue(arg0 string) (*jni.Object, error)

SetSubtypeExtraValue calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setSubtypeExtraValue.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeIconResId ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeIconResId(arg0 int32) (*jni.Object, error)

SetSubtypeIconResId calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setSubtypeIconResId.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeId ¶ added in v0.0.7

SetSubtypeId calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setSubtypeId.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeLocale ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeLocale(arg0 string) (*jni.Object, error)

SetSubtypeLocale calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setSubtypeLocale.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeMode ¶ added in v0.0.7

SetSubtypeMode calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setSubtypeMode.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeNameOverride ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeNameOverride(arg0 string) (*jni.Object, error)

SetSubtypeNameOverride calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setSubtypeNameOverride.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeNameResId ¶ added in v0.0.7

func (m *InputMethodSubtypeInputMethodSubtypeBuilder) SetSubtypeNameResId(arg0 int32) (*jni.Object, error)

SetSubtypeNameResId calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.setSubtypeNameResId.

func (*InputMethodSubtypeInputMethodSubtypeBuilder) ToString ¶ added in v0.0.8

ToString calls android.view.inputmethod.InputMethodSubtype$InputMethodSubtypeBuilder.toString.

type InsertGesture ¶ added in v0.0.7

type InsertGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InsertGesture wraps android.view.inputmethod.InsertGesture.

func (*InsertGesture) DescribeContents ¶ added in v0.0.7

func (m *InsertGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InsertGesture.describeContents.

func (*InsertGesture) Equals ¶ added in v0.0.7

func (m *InsertGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InsertGesture.equals.

func (*InsertGesture) GetInsertionPoint ¶ added in v0.0.7

func (m *InsertGesture) GetInsertionPoint() (*jni.Object, error)

GetInsertionPoint calls android.view.inputmethod.InsertGesture.getInsertionPoint.

func (*InsertGesture) GetTextToInsert ¶ added in v0.0.7

func (m *InsertGesture) GetTextToInsert() (string, error)

GetTextToInsert calls android.view.inputmethod.InsertGesture.getTextToInsert.

func (*InsertGesture) HashCode ¶ added in v0.0.7

func (m *InsertGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InsertGesture.hashCode.

func (*InsertGesture) ToString ¶ added in v0.0.8

func (m *InsertGesture) ToString() (string, error)

ToString calls android.view.inputmethod.InsertGesture.toString.

func (*InsertGesture) WriteToParcel ¶ added in v0.0.7

func (m *InsertGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InsertGesture.writeToParcel.

type InsertGestureBuilder ¶ added in v0.0.7

type InsertGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InsertGestureBuilder wraps android.view.inputmethod.InsertGesture$Builder.

func (*InsertGestureBuilder) Build ¶ added in v0.0.7

func (m *InsertGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.InsertGesture$Builder.build.

func (*InsertGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *InsertGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.InsertGesture$Builder.setFallbackText.

func (*InsertGestureBuilder) SetInsertionPoint ¶ added in v0.0.7

func (m *InsertGestureBuilder) SetInsertionPoint(arg0 *jni.Object) (*jni.Object, error)

SetInsertionPoint calls android.view.inputmethod.InsertGesture$Builder.setInsertionPoint.

func (*InsertGestureBuilder) SetTextToInsert ¶ added in v0.0.7

func (m *InsertGestureBuilder) SetTextToInsert(arg0 string) (*jni.Object, error)

SetTextToInsert calls android.view.inputmethod.InsertGesture$Builder.setTextToInsert.

func (*InsertGestureBuilder) ToString ¶ added in v0.0.8

func (m *InsertGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.InsertGesture$Builder.toString.

type InsertModeGesture ¶ added in v0.0.7

type InsertModeGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InsertModeGesture wraps android.view.inputmethod.InsertModeGesture.

func (*InsertModeGesture) DescribeContents ¶ added in v0.0.7

func (m *InsertModeGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.InsertModeGesture.describeContents.

func (*InsertModeGesture) Equals ¶ added in v0.0.7

func (m *InsertModeGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.InsertModeGesture.equals.

func (*InsertModeGesture) GetCancellationSignal ¶ added in v0.0.7

func (m *InsertModeGesture) GetCancellationSignal() (*jni.Object, error)

GetCancellationSignal calls android.view.inputmethod.InsertModeGesture.getCancellationSignal.

func (*InsertModeGesture) GetInsertionPoint ¶ added in v0.0.7

func (m *InsertModeGesture) GetInsertionPoint() (*jni.Object, error)

GetInsertionPoint calls android.view.inputmethod.InsertModeGesture.getInsertionPoint.

func (*InsertModeGesture) HashCode ¶ added in v0.0.7

func (m *InsertModeGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.InsertModeGesture.hashCode.

func (*InsertModeGesture) ToString ¶ added in v0.0.8

func (m *InsertModeGesture) ToString() (string, error)

ToString calls android.view.inputmethod.InsertModeGesture.toString.

func (*InsertModeGesture) WriteToParcel ¶ added in v0.0.7

func (m *InsertModeGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.InsertModeGesture.writeToParcel.

type InsertModeGestureBuilder ¶ added in v0.0.7

type InsertModeGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

InsertModeGestureBuilder wraps android.view.inputmethod.InsertModeGesture$Builder.

func (*InsertModeGestureBuilder) Build ¶ added in v0.0.7

func (m *InsertModeGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.InsertModeGesture$Builder.build.

func (*InsertModeGestureBuilder) SetCancellationSignal ¶ added in v0.0.7

func (m *InsertModeGestureBuilder) SetCancellationSignal(arg0 *jni.Object) (*jni.Object, error)

SetCancellationSignal calls android.view.inputmethod.InsertModeGesture$Builder.setCancellationSignal.

func (*InsertModeGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *InsertModeGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.InsertModeGesture$Builder.setFallbackText.

func (*InsertModeGestureBuilder) SetInsertionPoint ¶ added in v0.0.7

func (m *InsertModeGestureBuilder) SetInsertionPoint(arg0 *jni.Object) (*jni.Object, error)

SetInsertionPoint calls android.view.inputmethod.InsertModeGesture$Builder.setInsertionPoint.

func (*InsertModeGestureBuilder) ToString ¶ added in v0.0.8

func (m *InsertModeGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.InsertModeGesture$Builder.toString.

type JoinOrSplitGesture ¶ added in v0.0.7

type JoinOrSplitGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

JoinOrSplitGesture wraps android.view.inputmethod.JoinOrSplitGesture.

func (*JoinOrSplitGesture) DescribeContents ¶ added in v0.0.7

func (m *JoinOrSplitGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.JoinOrSplitGesture.describeContents.

func (*JoinOrSplitGesture) Equals ¶ added in v0.0.7

func (m *JoinOrSplitGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.JoinOrSplitGesture.equals.

func (*JoinOrSplitGesture) GetJoinOrSplitPoint ¶ added in v0.0.7

func (m *JoinOrSplitGesture) GetJoinOrSplitPoint() (*jni.Object, error)

GetJoinOrSplitPoint calls android.view.inputmethod.JoinOrSplitGesture.getJoinOrSplitPoint.

func (*JoinOrSplitGesture) HashCode ¶ added in v0.0.7

func (m *JoinOrSplitGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.JoinOrSplitGesture.hashCode.

func (*JoinOrSplitGesture) ToString ¶ added in v0.0.8

func (m *JoinOrSplitGesture) ToString() (string, error)

ToString calls android.view.inputmethod.JoinOrSplitGesture.toString.

func (*JoinOrSplitGesture) WriteToParcel ¶ added in v0.0.7

func (m *JoinOrSplitGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.JoinOrSplitGesture.writeToParcel.

type JoinOrSplitGestureBuilder ¶ added in v0.0.7

type JoinOrSplitGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

JoinOrSplitGestureBuilder wraps android.view.inputmethod.JoinOrSplitGesture$Builder.

func (*JoinOrSplitGestureBuilder) Build ¶ added in v0.0.7

func (m *JoinOrSplitGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.JoinOrSplitGesture$Builder.build.

func (*JoinOrSplitGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *JoinOrSplitGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.JoinOrSplitGesture$Builder.setFallbackText.

func (*JoinOrSplitGestureBuilder) SetJoinOrSplitPoint ¶ added in v0.0.7

func (m *JoinOrSplitGestureBuilder) SetJoinOrSplitPoint(arg0 *jni.Object) (*jni.Object, error)

SetJoinOrSplitPoint calls android.view.inputmethod.JoinOrSplitGesture$Builder.setJoinOrSplitPoint.

func (*JoinOrSplitGestureBuilder) ToString ¶ added in v0.0.8

func (m *JoinOrSplitGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.JoinOrSplitGesture$Builder.toString.

type PreviewableHandwritingGesture ¶ added in v0.0.8

type PreviewableHandwritingGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

PreviewableHandwritingGesture wraps android.view.inputmethod.PreviewableHandwritingGesture.

func (*PreviewableHandwritingGesture) ToString ¶ added in v0.0.8

func (m *PreviewableHandwritingGesture) ToString() (string, error)

ToString calls android.view.inputmethod.PreviewableHandwritingGesture.toString.

type RemoveSpaceGesture ¶ added in v0.0.7

type RemoveSpaceGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

RemoveSpaceGesture wraps android.view.inputmethod.RemoveSpaceGesture.

func (*RemoveSpaceGesture) DescribeContents ¶ added in v0.0.7

func (m *RemoveSpaceGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.RemoveSpaceGesture.describeContents.

func (*RemoveSpaceGesture) Equals ¶ added in v0.0.7

func (m *RemoveSpaceGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.RemoveSpaceGesture.equals.

func (*RemoveSpaceGesture) GetEndPoint ¶ added in v0.0.7

func (m *RemoveSpaceGesture) GetEndPoint() (*jni.Object, error)

GetEndPoint calls android.view.inputmethod.RemoveSpaceGesture.getEndPoint.

func (*RemoveSpaceGesture) GetStartPoint ¶ added in v0.0.7

func (m *RemoveSpaceGesture) GetStartPoint() (*jni.Object, error)

GetStartPoint calls android.view.inputmethod.RemoveSpaceGesture.getStartPoint.

func (*RemoveSpaceGesture) HashCode ¶ added in v0.0.7

func (m *RemoveSpaceGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.RemoveSpaceGesture.hashCode.

func (*RemoveSpaceGesture) ToString ¶ added in v0.0.8

func (m *RemoveSpaceGesture) ToString() (string, error)

ToString calls android.view.inputmethod.RemoveSpaceGesture.toString.

func (*RemoveSpaceGesture) WriteToParcel ¶ added in v0.0.7

func (m *RemoveSpaceGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.RemoveSpaceGesture.writeToParcel.

type RemoveSpaceGestureBuilder ¶ added in v0.0.7

type RemoveSpaceGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

RemoveSpaceGestureBuilder wraps android.view.inputmethod.RemoveSpaceGesture$Builder.

func (*RemoveSpaceGestureBuilder) Build ¶ added in v0.0.7

func (m *RemoveSpaceGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.RemoveSpaceGesture$Builder.build.

func (*RemoveSpaceGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *RemoveSpaceGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.RemoveSpaceGesture$Builder.setFallbackText.

func (*RemoveSpaceGestureBuilder) SetPoints ¶ added in v0.0.7

func (m *RemoveSpaceGestureBuilder) SetPoints(arg0 *jni.Object, arg1 *jni.Object) (*jni.Object, error)

SetPoints calls android.view.inputmethod.RemoveSpaceGesture$Builder.setPoints.

func (*RemoveSpaceGestureBuilder) ToString ¶ added in v0.0.8

func (m *RemoveSpaceGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.RemoveSpaceGesture$Builder.toString.

type SelectGesture ¶ added in v0.0.7

type SelectGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

SelectGesture wraps android.view.inputmethod.SelectGesture.

func (*SelectGesture) DescribeContents ¶ added in v0.0.7

func (m *SelectGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.SelectGesture.describeContents.

func (*SelectGesture) Equals ¶ added in v0.0.7

func (m *SelectGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.SelectGesture.equals.

func (*SelectGesture) GetGranularity ¶ added in v0.0.7

func (m *SelectGesture) GetGranularity() (int32, error)

GetGranularity calls android.view.inputmethod.SelectGesture.getGranularity.

func (*SelectGesture) GetSelectionArea ¶ added in v0.0.7

func (m *SelectGesture) GetSelectionArea() (*jni.Object, error)

GetSelectionArea calls android.view.inputmethod.SelectGesture.getSelectionArea.

func (*SelectGesture) HashCode ¶ added in v0.0.7

func (m *SelectGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.SelectGesture.hashCode.

func (*SelectGesture) ToString ¶ added in v0.0.8

func (m *SelectGesture) ToString() (string, error)

ToString calls android.view.inputmethod.SelectGesture.toString.

func (*SelectGesture) WriteToParcel ¶ added in v0.0.7

func (m *SelectGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.SelectGesture.writeToParcel.

type SelectGestureBuilder ¶ added in v0.0.7

type SelectGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

SelectGestureBuilder wraps android.view.inputmethod.SelectGesture$Builder.

func (*SelectGestureBuilder) Build ¶ added in v0.0.7

func (m *SelectGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.SelectGesture$Builder.build.

func (*SelectGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *SelectGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.SelectGesture$Builder.setFallbackText.

func (*SelectGestureBuilder) SetGranularity ¶ added in v0.0.7

func (m *SelectGestureBuilder) SetGranularity(arg0 int32) (*jni.Object, error)

SetGranularity calls android.view.inputmethod.SelectGesture$Builder.setGranularity.

func (*SelectGestureBuilder) SetSelectionArea ¶ added in v0.0.7

func (m *SelectGestureBuilder) SetSelectionArea(arg0 *jni.Object) (*jni.Object, error)

SetSelectionArea calls android.view.inputmethod.SelectGesture$Builder.setSelectionArea.

func (*SelectGestureBuilder) ToString ¶ added in v0.0.8

func (m *SelectGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.SelectGesture$Builder.toString.

type SelectRangeGesture ¶ added in v0.0.7

type SelectRangeGesture struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

SelectRangeGesture wraps android.view.inputmethod.SelectRangeGesture.

func (*SelectRangeGesture) DescribeContents ¶ added in v0.0.7

func (m *SelectRangeGesture) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.SelectRangeGesture.describeContents.

func (*SelectRangeGesture) Equals ¶ added in v0.0.7

func (m *SelectRangeGesture) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.SelectRangeGesture.equals.

func (*SelectRangeGesture) GetGranularity ¶ added in v0.0.7

func (m *SelectRangeGesture) GetGranularity() (int32, error)

GetGranularity calls android.view.inputmethod.SelectRangeGesture.getGranularity.

func (*SelectRangeGesture) GetSelectionEndArea ¶ added in v0.0.7

func (m *SelectRangeGesture) GetSelectionEndArea() (*jni.Object, error)

GetSelectionEndArea calls android.view.inputmethod.SelectRangeGesture.getSelectionEndArea.

func (*SelectRangeGesture) GetSelectionStartArea ¶ added in v0.0.7

func (m *SelectRangeGesture) GetSelectionStartArea() (*jni.Object, error)

GetSelectionStartArea calls android.view.inputmethod.SelectRangeGesture.getSelectionStartArea.

func (*SelectRangeGesture) HashCode ¶ added in v0.0.7

func (m *SelectRangeGesture) HashCode() (int32, error)

HashCode calls android.view.inputmethod.SelectRangeGesture.hashCode.

func (*SelectRangeGesture) ToString ¶ added in v0.0.8

func (m *SelectRangeGesture) ToString() (string, error)

ToString calls android.view.inputmethod.SelectRangeGesture.toString.

func (*SelectRangeGesture) WriteToParcel ¶ added in v0.0.7

func (m *SelectRangeGesture) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.SelectRangeGesture.writeToParcel.

type SelectRangeGestureBuilder ¶ added in v0.0.7

type SelectRangeGestureBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

SelectRangeGestureBuilder wraps android.view.inputmethod.SelectRangeGesture$Builder.

func (*SelectRangeGestureBuilder) Build ¶ added in v0.0.7

func (m *SelectRangeGestureBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.SelectRangeGesture$Builder.build.

func (*SelectRangeGestureBuilder) SetFallbackText ¶ added in v0.0.7

func (m *SelectRangeGestureBuilder) SetFallbackText(arg0 string) (*jni.Object, error)

SetFallbackText calls android.view.inputmethod.SelectRangeGesture$Builder.setFallbackText.

func (*SelectRangeGestureBuilder) SetGranularity ¶ added in v0.0.7

func (m *SelectRangeGestureBuilder) SetGranularity(arg0 int32) (*jni.Object, error)

SetGranularity calls android.view.inputmethod.SelectRangeGesture$Builder.setGranularity.

func (*SelectRangeGestureBuilder) SetSelectionEndArea ¶ added in v0.0.7

func (m *SelectRangeGestureBuilder) SetSelectionEndArea(arg0 *jni.Object) (*jni.Object, error)

SetSelectionEndArea calls android.view.inputmethod.SelectRangeGesture$Builder.setSelectionEndArea.

func (*SelectRangeGestureBuilder) SetSelectionStartArea ¶ added in v0.0.7

func (m *SelectRangeGestureBuilder) SetSelectionStartArea(arg0 *jni.Object) (*jni.Object, error)

SetSelectionStartArea calls android.view.inputmethod.SelectRangeGesture$Builder.setSelectionStartArea.

func (*SelectRangeGestureBuilder) ToString ¶ added in v0.0.8

func (m *SelectRangeGestureBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.SelectRangeGesture$Builder.toString.

type SurroundingText ¶ added in v0.0.7

type SurroundingText struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

SurroundingText wraps android.view.inputmethod.SurroundingText.

func NewSurroundingText ¶ added in v0.0.7

func NewSurroundingText(vm *jni.VM, arg0 string, arg1 int32, arg2 int32, arg3 int32) (*SurroundingText, error)

NewSurroundingText creates a new android.view.inputmethod.SurroundingText instance.

func (*SurroundingText) DescribeContents ¶ added in v0.0.7

func (m *SurroundingText) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.SurroundingText.describeContents.

func (*SurroundingText) GetOffset ¶ added in v0.0.7

func (m *SurroundingText) GetOffset() (int32, error)

GetOffset calls android.view.inputmethod.SurroundingText.getOffset.

func (*SurroundingText) GetSelectionEnd ¶ added in v0.0.7

func (m *SurroundingText) GetSelectionEnd() (int32, error)

GetSelectionEnd calls android.view.inputmethod.SurroundingText.getSelectionEnd.

func (*SurroundingText) GetSelectionStart ¶ added in v0.0.7

func (m *SurroundingText) GetSelectionStart() (int32, error)

GetSelectionStart calls android.view.inputmethod.SurroundingText.getSelectionStart.

func (*SurroundingText) GetText ¶ added in v0.0.7

func (m *SurroundingText) GetText() (*jni.Object, error)

GetText calls android.view.inputmethod.SurroundingText.getText.

func (*SurroundingText) ToString ¶ added in v0.0.8

func (m *SurroundingText) ToString() (string, error)

ToString calls android.view.inputmethod.SurroundingText.toString.

func (*SurroundingText) WriteToParcel ¶ added in v0.0.7

func (m *SurroundingText) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.SurroundingText.writeToParcel.

type TextAppearanceInfo ¶ added in v0.0.7

type TextAppearanceInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextAppearanceInfo wraps android.view.inputmethod.TextAppearanceInfo.

func (*TextAppearanceInfo) DescribeContents ¶ added in v0.0.7

func (m *TextAppearanceInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.TextAppearanceInfo.describeContents.

func (*TextAppearanceInfo) Equals ¶ added in v0.0.7

func (m *TextAppearanceInfo) Equals(arg0 *jni.Object) (bool, error)

Equals calls android.view.inputmethod.TextAppearanceInfo.equals.

func (*TextAppearanceInfo) GetFontFeatureSettings ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetFontFeatureSettings() (string, error)

GetFontFeatureSettings calls android.view.inputmethod.TextAppearanceInfo.getFontFeatureSettings.

func (*TextAppearanceInfo) GetFontVariationSettings ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetFontVariationSettings() (string, error)

GetFontVariationSettings calls android.view.inputmethod.TextAppearanceInfo.getFontVariationSettings.

func (*TextAppearanceInfo) GetHighlightTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetHighlightTextColor() (int32, error)

GetHighlightTextColor calls android.view.inputmethod.TextAppearanceInfo.getHighlightTextColor.

func (*TextAppearanceInfo) GetHintTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetHintTextColor() (int32, error)

GetHintTextColor calls android.view.inputmethod.TextAppearanceInfo.getHintTextColor.

func (*TextAppearanceInfo) GetLetterSpacing ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetLetterSpacing() (float32, error)

GetLetterSpacing calls android.view.inputmethod.TextAppearanceInfo.getLetterSpacing.

func (*TextAppearanceInfo) GetLineBreakStyle ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetLineBreakStyle() (int32, error)

GetLineBreakStyle calls android.view.inputmethod.TextAppearanceInfo.getLineBreakStyle.

func (*TextAppearanceInfo) GetLineBreakWordStyle ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetLineBreakWordStyle() (int32, error)

GetLineBreakWordStyle calls android.view.inputmethod.TextAppearanceInfo.getLineBreakWordStyle.

func (*TextAppearanceInfo) GetLinkTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetLinkTextColor() (int32, error)

GetLinkTextColor calls android.view.inputmethod.TextAppearanceInfo.getLinkTextColor.

func (*TextAppearanceInfo) GetShadowColor ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetShadowColor() (int32, error)

GetShadowColor calls android.view.inputmethod.TextAppearanceInfo.getShadowColor.

func (*TextAppearanceInfo) GetShadowDx ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetShadowDx() (float32, error)

GetShadowDx calls android.view.inputmethod.TextAppearanceInfo.getShadowDx.

func (*TextAppearanceInfo) GetShadowDy ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetShadowDy() (float32, error)

GetShadowDy calls android.view.inputmethod.TextAppearanceInfo.getShadowDy.

func (*TextAppearanceInfo) GetShadowRadius ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetShadowRadius() (float32, error)

GetShadowRadius calls android.view.inputmethod.TextAppearanceInfo.getShadowRadius.

func (*TextAppearanceInfo) GetSystemFontFamilyName ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetSystemFontFamilyName() (string, error)

GetSystemFontFamilyName calls android.view.inputmethod.TextAppearanceInfo.getSystemFontFamilyName.

func (*TextAppearanceInfo) GetTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetTextColor() (int32, error)

GetTextColor calls android.view.inputmethod.TextAppearanceInfo.getTextColor.

func (*TextAppearanceInfo) GetTextFontWeight ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetTextFontWeight() (int32, error)

GetTextFontWeight calls android.view.inputmethod.TextAppearanceInfo.getTextFontWeight.

func (*TextAppearanceInfo) GetTextLocales ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetTextLocales() (*jni.Object, error)

GetTextLocales calls android.view.inputmethod.TextAppearanceInfo.getTextLocales.

func (*TextAppearanceInfo) GetTextScaleX ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetTextScaleX() (float32, error)

GetTextScaleX calls android.view.inputmethod.TextAppearanceInfo.getTextScaleX.

func (*TextAppearanceInfo) GetTextSize ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetTextSize() (float32, error)

GetTextSize calls android.view.inputmethod.TextAppearanceInfo.getTextSize.

func (*TextAppearanceInfo) GetTextStyle ¶ added in v0.0.7

func (m *TextAppearanceInfo) GetTextStyle() (int32, error)

GetTextStyle calls android.view.inputmethod.TextAppearanceInfo.getTextStyle.

func (*TextAppearanceInfo) HashCode ¶ added in v0.0.7

func (m *TextAppearanceInfo) HashCode() (int32, error)

HashCode calls android.view.inputmethod.TextAppearanceInfo.hashCode.

func (*TextAppearanceInfo) IsAllCaps ¶ added in v0.0.7

func (m *TextAppearanceInfo) IsAllCaps() (bool, error)

IsAllCaps calls android.view.inputmethod.TextAppearanceInfo.isAllCaps.

func (*TextAppearanceInfo) IsElegantTextHeight ¶ added in v0.0.7

func (m *TextAppearanceInfo) IsElegantTextHeight() (bool, error)

IsElegantTextHeight calls android.view.inputmethod.TextAppearanceInfo.isElegantTextHeight.

func (*TextAppearanceInfo) IsFallbackLineSpacing ¶ added in v0.0.7

func (m *TextAppearanceInfo) IsFallbackLineSpacing() (bool, error)

IsFallbackLineSpacing calls android.view.inputmethod.TextAppearanceInfo.isFallbackLineSpacing.

func (*TextAppearanceInfo) ToString ¶ added in v0.0.7

func (m *TextAppearanceInfo) ToString() (string, error)

ToString calls android.view.inputmethod.TextAppearanceInfo.toString.

func (*TextAppearanceInfo) WriteToParcel ¶ added in v0.0.7

func (m *TextAppearanceInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.TextAppearanceInfo.writeToParcel.

type TextAppearanceInfoBuilder ¶ added in v0.0.7

type TextAppearanceInfoBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextAppearanceInfoBuilder wraps android.view.inputmethod.TextAppearanceInfo$Builder.

func (*TextAppearanceInfoBuilder) Build ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.TextAppearanceInfo$Builder.build.

func (*TextAppearanceInfoBuilder) SetAllCaps ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetAllCaps(arg0 bool) (*jni.Object, error)

SetAllCaps calls android.view.inputmethod.TextAppearanceInfo$Builder.setAllCaps.

func (*TextAppearanceInfoBuilder) SetElegantTextHeight ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetElegantTextHeight(arg0 bool) (*jni.Object, error)

SetElegantTextHeight calls android.view.inputmethod.TextAppearanceInfo$Builder.setElegantTextHeight.

func (*TextAppearanceInfoBuilder) SetFallbackLineSpacing ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetFallbackLineSpacing(arg0 bool) (*jni.Object, error)

SetFallbackLineSpacing calls android.view.inputmethod.TextAppearanceInfo$Builder.setFallbackLineSpacing.

func (*TextAppearanceInfoBuilder) SetFontFeatureSettings ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetFontFeatureSettings(arg0 string) (*jni.Object, error)

SetFontFeatureSettings calls android.view.inputmethod.TextAppearanceInfo$Builder.setFontFeatureSettings.

func (*TextAppearanceInfoBuilder) SetFontVariationSettings ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetFontVariationSettings(arg0 string) (*jni.Object, error)

SetFontVariationSettings calls android.view.inputmethod.TextAppearanceInfo$Builder.setFontVariationSettings.

func (*TextAppearanceInfoBuilder) SetHighlightTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetHighlightTextColor(arg0 int32) (*jni.Object, error)

SetHighlightTextColor calls android.view.inputmethod.TextAppearanceInfo$Builder.setHighlightTextColor.

func (*TextAppearanceInfoBuilder) SetHintTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetHintTextColor(arg0 int32) (*jni.Object, error)

SetHintTextColor calls android.view.inputmethod.TextAppearanceInfo$Builder.setHintTextColor.

func (*TextAppearanceInfoBuilder) SetLetterSpacing ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetLetterSpacing(arg0 float32) (*jni.Object, error)

SetLetterSpacing calls android.view.inputmethod.TextAppearanceInfo$Builder.setLetterSpacing.

func (*TextAppearanceInfoBuilder) SetLineBreakStyle ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetLineBreakStyle(arg0 int32) (*jni.Object, error)

SetLineBreakStyle calls android.view.inputmethod.TextAppearanceInfo$Builder.setLineBreakStyle.

func (*TextAppearanceInfoBuilder) SetLineBreakWordStyle ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetLineBreakWordStyle(arg0 int32) (*jni.Object, error)

SetLineBreakWordStyle calls android.view.inputmethod.TextAppearanceInfo$Builder.setLineBreakWordStyle.

func (*TextAppearanceInfoBuilder) SetLinkTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetLinkTextColor(arg0 int32) (*jni.Object, error)

SetLinkTextColor calls android.view.inputmethod.TextAppearanceInfo$Builder.setLinkTextColor.

func (*TextAppearanceInfoBuilder) SetShadowColor ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetShadowColor(arg0 int32) (*jni.Object, error)

SetShadowColor calls android.view.inputmethod.TextAppearanceInfo$Builder.setShadowColor.

func (*TextAppearanceInfoBuilder) SetShadowDx ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetShadowDx(arg0 float32) (*jni.Object, error)

SetShadowDx calls android.view.inputmethod.TextAppearanceInfo$Builder.setShadowDx.

func (*TextAppearanceInfoBuilder) SetShadowDy ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetShadowDy(arg0 float32) (*jni.Object, error)

SetShadowDy calls android.view.inputmethod.TextAppearanceInfo$Builder.setShadowDy.

func (*TextAppearanceInfoBuilder) SetShadowRadius ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetShadowRadius(arg0 float32) (*jni.Object, error)

SetShadowRadius calls android.view.inputmethod.TextAppearanceInfo$Builder.setShadowRadius.

func (*TextAppearanceInfoBuilder) SetSystemFontFamilyName ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetSystemFontFamilyName(arg0 string) (*jni.Object, error)

SetSystemFontFamilyName calls android.view.inputmethod.TextAppearanceInfo$Builder.setSystemFontFamilyName.

func (*TextAppearanceInfoBuilder) SetTextColor ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetTextColor(arg0 int32) (*jni.Object, error)

SetTextColor calls android.view.inputmethod.TextAppearanceInfo$Builder.setTextColor.

func (*TextAppearanceInfoBuilder) SetTextFontWeight ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetTextFontWeight(arg0 int32) (*jni.Object, error)

SetTextFontWeight calls android.view.inputmethod.TextAppearanceInfo$Builder.setTextFontWeight.

func (*TextAppearanceInfoBuilder) SetTextLocales ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetTextLocales(arg0 *jni.Object) (*jni.Object, error)

SetTextLocales calls android.view.inputmethod.TextAppearanceInfo$Builder.setTextLocales.

func (*TextAppearanceInfoBuilder) SetTextScaleX ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetTextScaleX(arg0 float32) (*jni.Object, error)

SetTextScaleX calls android.view.inputmethod.TextAppearanceInfo$Builder.setTextScaleX.

func (*TextAppearanceInfoBuilder) SetTextSize ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetTextSize(arg0 float32) (*jni.Object, error)

SetTextSize calls android.view.inputmethod.TextAppearanceInfo$Builder.setTextSize.

func (*TextAppearanceInfoBuilder) SetTextStyle ¶ added in v0.0.7

func (m *TextAppearanceInfoBuilder) SetTextStyle(arg0 int32) (*jni.Object, error)

SetTextStyle calls android.view.inputmethod.TextAppearanceInfo$Builder.setTextStyle.

func (*TextAppearanceInfoBuilder) ToString ¶ added in v0.0.8

func (m *TextAppearanceInfoBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.TextAppearanceInfo$Builder.toString.

type TextAttribute ¶ added in v0.0.7

type TextAttribute struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextAttribute wraps android.view.inputmethod.TextAttribute.

func (*TextAttribute) DescribeContents ¶ added in v0.0.7

func (m *TextAttribute) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.TextAttribute.describeContents.

func (*TextAttribute) GetExtras ¶ added in v0.0.7

func (m *TextAttribute) GetExtras() (*jni.Object, error)

GetExtras calls android.view.inputmethod.TextAttribute.getExtras.

func (*TextAttribute) GetTextConversionSuggestions ¶ added in v0.0.8

func (m *TextAttribute) GetTextConversionSuggestions() (*jni.Object, error)

GetTextConversionSuggestions calls android.view.inputmethod.TextAttribute.getTextConversionSuggestions.

func (*TextAttribute) ToString ¶ added in v0.0.8

func (m *TextAttribute) ToString() (string, error)

ToString calls android.view.inputmethod.TextAttribute.toString.

func (*TextAttribute) WriteToParcel ¶ added in v0.0.7

func (m *TextAttribute) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.TextAttribute.writeToParcel.

type TextAttributeBuilder ¶ added in v0.0.7

type TextAttributeBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextAttributeBuilder wraps android.view.inputmethod.TextAttribute$Builder.

func (*TextAttributeBuilder) Build ¶ added in v0.0.7

func (m *TextAttributeBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.TextAttribute$Builder.build.

func (*TextAttributeBuilder) SetExtras ¶ added in v0.0.7

func (m *TextAttributeBuilder) SetExtras(arg0 *jni.Object) (*jni.Object, error)

SetExtras calls android.view.inputmethod.TextAttribute$Builder.setExtras.

func (*TextAttributeBuilder) ToString ¶ added in v0.0.8

func (m *TextAttributeBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.TextAttribute$Builder.toString.

type TextBoundsInfo ¶ added in v0.0.7

type TextBoundsInfo struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextBoundsInfo wraps android.view.inputmethod.TextBoundsInfo.

func (*TextBoundsInfo) DescribeContents ¶ added in v0.0.7

func (m *TextBoundsInfo) DescribeContents() (int32, error)

DescribeContents calls android.view.inputmethod.TextBoundsInfo.describeContents.

func (*TextBoundsInfo) GetCharacterBidiLevel ¶ added in v0.0.7

func (m *TextBoundsInfo) GetCharacterBidiLevel(arg0 int32) (int32, error)

GetCharacterBidiLevel calls android.view.inputmethod.TextBoundsInfo.getCharacterBidiLevel.

func (*TextBoundsInfo) GetCharacterBounds ¶ added in v0.0.7

func (m *TextBoundsInfo) GetCharacterBounds(arg0 int32, arg1 *jni.Object) error

GetCharacterBounds calls android.view.inputmethod.TextBoundsInfo.getCharacterBounds.

func (*TextBoundsInfo) GetCharacterFlags ¶ added in v0.0.7

func (m *TextBoundsInfo) GetCharacterFlags(arg0 int32) (int32, error)

GetCharacterFlags calls android.view.inputmethod.TextBoundsInfo.getCharacterFlags.

func (*TextBoundsInfo) GetEndIndex ¶ added in v0.0.7

func (m *TextBoundsInfo) GetEndIndex() (int32, error)

GetEndIndex calls android.view.inputmethod.TextBoundsInfo.getEndIndex.

func (*TextBoundsInfo) GetGraphemeSegmentFinder ¶ added in v0.0.7

func (m *TextBoundsInfo) GetGraphemeSegmentFinder() (*jni.Object, error)

GetGraphemeSegmentFinder calls android.view.inputmethod.TextBoundsInfo.getGraphemeSegmentFinder.

func (*TextBoundsInfo) GetLineSegmentFinder ¶ added in v0.0.7

func (m *TextBoundsInfo) GetLineSegmentFinder() (*jni.Object, error)

GetLineSegmentFinder calls android.view.inputmethod.TextBoundsInfo.getLineSegmentFinder.

func (*TextBoundsInfo) GetMatrix ¶ added in v0.0.7

func (m *TextBoundsInfo) GetMatrix(arg0 *jni.Object) error

GetMatrix calls android.view.inputmethod.TextBoundsInfo.getMatrix.

func (*TextBoundsInfo) GetOffsetForPosition ¶ added in v0.0.7

func (m *TextBoundsInfo) GetOffsetForPosition(arg0 float32, arg1 float32) (int32, error)

GetOffsetForPosition calls android.view.inputmethod.TextBoundsInfo.getOffsetForPosition.

func (*TextBoundsInfo) GetRangeForRect ¶ added in v0.0.7

func (m *TextBoundsInfo) GetRangeForRect(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

GetRangeForRect calls android.view.inputmethod.TextBoundsInfo.getRangeForRect.

func (*TextBoundsInfo) GetStartIndex ¶ added in v0.0.7

func (m *TextBoundsInfo) GetStartIndex() (int32, error)

GetStartIndex calls android.view.inputmethod.TextBoundsInfo.getStartIndex.

func (*TextBoundsInfo) GetWordSegmentFinder ¶ added in v0.0.7

func (m *TextBoundsInfo) GetWordSegmentFinder() (*jni.Object, error)

GetWordSegmentFinder calls android.view.inputmethod.TextBoundsInfo.getWordSegmentFinder.

func (*TextBoundsInfo) ToString ¶ added in v0.0.8

func (m *TextBoundsInfo) ToString() (string, error)

ToString calls android.view.inputmethod.TextBoundsInfo.toString.

func (*TextBoundsInfo) WriteToParcel ¶ added in v0.0.7

func (m *TextBoundsInfo) WriteToParcel(arg0 *jni.Object, arg1 int32) error

WriteToParcel calls android.view.inputmethod.TextBoundsInfo.writeToParcel.

type TextBoundsInfoBuilder ¶ added in v0.0.7

type TextBoundsInfoBuilder struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextBoundsInfoBuilder wraps android.view.inputmethod.TextBoundsInfo$Builder.

func (*TextBoundsInfoBuilder) Build ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) Build() (*jni.Object, error)

Build calls android.view.inputmethod.TextBoundsInfo$Builder.build.

func (*TextBoundsInfoBuilder) Clear ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) Clear() (*jni.Object, error)

Clear calls android.view.inputmethod.TextBoundsInfo$Builder.clear.

func (*TextBoundsInfoBuilder) SetCharacterBidiLevel ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetCharacterBidiLevel(arg0 *jni.Object) (*jni.Object, error)

SetCharacterBidiLevel calls android.view.inputmethod.TextBoundsInfo$Builder.setCharacterBidiLevel.

func (*TextBoundsInfoBuilder) SetCharacterBounds ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetCharacterBounds(arg0 *jni.Object) (*jni.Object, error)

SetCharacterBounds calls android.view.inputmethod.TextBoundsInfo$Builder.setCharacterBounds.

func (*TextBoundsInfoBuilder) SetCharacterFlags ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetCharacterFlags(arg0 *jni.Object) (*jni.Object, error)

SetCharacterFlags calls android.view.inputmethod.TextBoundsInfo$Builder.setCharacterFlags.

func (*TextBoundsInfoBuilder) SetGraphemeSegmentFinder ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetGraphemeSegmentFinder(arg0 *jni.Object) (*jni.Object, error)

SetGraphemeSegmentFinder calls android.view.inputmethod.TextBoundsInfo$Builder.setGraphemeSegmentFinder.

func (*TextBoundsInfoBuilder) SetLineSegmentFinder ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetLineSegmentFinder(arg0 *jni.Object) (*jni.Object, error)

SetLineSegmentFinder calls android.view.inputmethod.TextBoundsInfo$Builder.setLineSegmentFinder.

func (*TextBoundsInfoBuilder) SetMatrix ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetMatrix(arg0 *jni.Object) (*jni.Object, error)

SetMatrix calls android.view.inputmethod.TextBoundsInfo$Builder.setMatrix.

func (*TextBoundsInfoBuilder) SetStartAndEnd ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetStartAndEnd(arg0 int32, arg1 int32) (*jni.Object, error)

SetStartAndEnd calls android.view.inputmethod.TextBoundsInfo$Builder.setStartAndEnd.

func (*TextBoundsInfoBuilder) SetWordSegmentFinder ¶ added in v0.0.7

func (m *TextBoundsInfoBuilder) SetWordSegmentFinder(arg0 *jni.Object) (*jni.Object, error)

SetWordSegmentFinder calls android.view.inputmethod.TextBoundsInfo$Builder.setWordSegmentFinder.

func (*TextBoundsInfoBuilder) ToString ¶ added in v0.0.8

func (m *TextBoundsInfoBuilder) ToString() (string, error)

ToString calls android.view.inputmethod.TextBoundsInfo$Builder.toString.

type TextBoundsInfoResult ¶ added in v0.0.7

type TextBoundsInfoResult struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextBoundsInfoResult wraps android.view.inputmethod.TextBoundsInfoResult.

func NewTextBoundsInfoResult ¶ added in v0.0.7

func NewTextBoundsInfoResult(vm *jni.VM, arg0 int32) (*TextBoundsInfoResult, error)

NewTextBoundsInfoResult creates a new android.view.inputmethod.TextBoundsInfoResult instance.

func (*TextBoundsInfoResult) GetResultCode ¶ added in v0.0.7

func (m *TextBoundsInfoResult) GetResultCode() (int32, error)

GetResultCode calls android.view.inputmethod.TextBoundsInfoResult.getResultCode.

func (*TextBoundsInfoResult) GetTextBoundsInfo ¶ added in v0.0.7

func (m *TextBoundsInfoResult) GetTextBoundsInfo() (*jni.Object, error)

GetTextBoundsInfo calls android.view.inputmethod.TextBoundsInfoResult.getTextBoundsInfo.

func (*TextBoundsInfoResult) ToString ¶ added in v0.0.8

func (m *TextBoundsInfoResult) ToString() (string, error)

ToString calls android.view.inputmethod.TextBoundsInfoResult.toString.

type TextSnapshot ¶ added in v0.0.7

type TextSnapshot struct {
	VM  *jni.VM
	Obj *jni.GlobalRef
}

TextSnapshot wraps android.view.inputmethod.TextSnapshot.

func NewTextSnapshot ¶ added in v0.0.7

func NewTextSnapshot(vm *jni.VM, arg0 *jni.Object, arg1 int32, arg2 int32, arg3 int32) (*TextSnapshot, error)

NewTextSnapshot creates a new android.view.inputmethod.TextSnapshot instance.

func (*TextSnapshot) GetCompositionEnd ¶ added in v0.0.7

func (m *TextSnapshot) GetCompositionEnd() (int32, error)

GetCompositionEnd calls android.view.inputmethod.TextSnapshot.getCompositionEnd.

func (*TextSnapshot) GetCompositionStart ¶ added in v0.0.7

func (m *TextSnapshot) GetCompositionStart() (int32, error)

GetCompositionStart calls android.view.inputmethod.TextSnapshot.getCompositionStart.

func (*TextSnapshot) GetCursorCapsMode ¶ added in v0.0.7

func (m *TextSnapshot) GetCursorCapsMode() (int32, error)

GetCursorCapsMode calls android.view.inputmethod.TextSnapshot.getCursorCapsMode.

func (*TextSnapshot) GetSelectionEnd ¶ added in v0.0.7

func (m *TextSnapshot) GetSelectionEnd() (int32, error)

GetSelectionEnd calls android.view.inputmethod.TextSnapshot.getSelectionEnd.

func (*TextSnapshot) GetSelectionStart ¶ added in v0.0.7

func (m *TextSnapshot) GetSelectionStart() (int32, error)

GetSelectionStart calls android.view.inputmethod.TextSnapshot.getSelectionStart.

func (*TextSnapshot) GetSurroundingText ¶ added in v0.0.7

func (m *TextSnapshot) GetSurroundingText() (*jni.Object, error)

GetSurroundingText calls android.view.inputmethod.TextSnapshot.getSurroundingText.

func (*TextSnapshot) ToString ¶ added in v0.0.8

func (m *TextSnapshot) ToString() (string, error)

ToString calls android.view.inputmethod.TextSnapshot.toString.

Directories ¶

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL