animation

package
v0.0.7 Latest Latest
Warning

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

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

Documentation

Overview

Package animation provides Go bindings for android.animation.

Index

Constants

View Source
const (
	Infinite           = consts.Infinite
	Restart            = consts.Restart
	Reverse            = consts.Reverse
	Appearing          = consts.Appearing
	ChangeAppearing    = consts.ChangeAppearing
	ChangeDisappearing = consts.ChangeDisappearing
	Changing           = consts.Changing
	Disappearing       = consts.Disappearing
)
View Source
const (
	DurationInfinite = consts.DurationInfinite
)

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 Animator

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

Animator wraps android.animation.Animator.

func (*Animator) AddListener

func (m *Animator) AddListener(arg0 *jni.Object) error

AddListener calls android.animation.Animator.addListener.

func (*Animator) AddPauseListener

func (m *Animator) AddPauseListener(arg0 *jni.Object) error

AddPauseListener calls android.animation.Animator.addPauseListener.

func (*Animator) Cancel

func (m *Animator) Cancel() error

Cancel calls android.animation.Animator.cancel.

func (*Animator) Clone0

func (m *Animator) Clone0() (*jni.Object, error)

Clone0 calls android.animation.Animator.clone.

func (*Animator) Clone0_1

func (m *Animator) Clone0_1() (*jni.Object, error)

Clone0_1 calls android.animation.Animator.clone.

func (*Animator) End

func (m *Animator) End() error

End calls android.animation.Animator.end.

func (*Animator) GetDuration

func (m *Animator) GetDuration() (int64, error)

GetDuration calls android.animation.Animator.getDuration.

func (*Animator) GetInterpolator

func (m *Animator) GetInterpolator() (*jni.Object, error)

GetInterpolator calls android.animation.Animator.getInterpolator.

func (*Animator) GetStartDelay

func (m *Animator) GetStartDelay() (int64, error)

GetStartDelay calls android.animation.Animator.getStartDelay.

func (*Animator) GetTotalDuration

func (m *Animator) GetTotalDuration() (int64, error)

GetTotalDuration calls android.animation.Animator.getTotalDuration.

func (*Animator) IsPaused

func (m *Animator) IsPaused() (bool, error)

IsPaused calls android.animation.Animator.isPaused.

func (*Animator) IsRunning

func (m *Animator) IsRunning() (bool, error)

IsRunning calls android.animation.Animator.isRunning.

func (*Animator) IsStarted

func (m *Animator) IsStarted() (bool, error)

IsStarted calls android.animation.Animator.isStarted.

func (*Animator) Pause

func (m *Animator) Pause() error

Pause calls android.animation.Animator.pause.

func (*Animator) RemoveAllListeners

func (m *Animator) RemoveAllListeners() error

RemoveAllListeners calls android.animation.Animator.removeAllListeners.

func (*Animator) RemoveListener

func (m *Animator) RemoveListener(arg0 *jni.Object) error

RemoveListener calls android.animation.Animator.removeListener.

func (*Animator) RemovePauseListener

func (m *Animator) RemovePauseListener(arg0 *jni.Object) error

RemovePauseListener calls android.animation.Animator.removePauseListener.

func (*Animator) Resume

func (m *Animator) Resume() error

Resume calls android.animation.Animator.resume.

func (*Animator) SetDuration

func (m *Animator) SetDuration(arg0 int64) (*jni.Object, error)

SetDuration calls android.animation.Animator.setDuration.

func (*Animator) SetInterpolator

func (m *Animator) SetInterpolator(arg0 *jni.Object) error

SetInterpolator calls android.animation.Animator.setInterpolator.

func (*Animator) SetStartDelay

func (m *Animator) SetStartDelay(arg0 int64) error

SetStartDelay calls android.animation.Animator.setStartDelay.

func (*Animator) SetTarget

func (m *Animator) SetTarget(arg0 *jni.Object) error

SetTarget calls android.animation.Animator.setTarget.

func (*Animator) SetupEndValues

func (m *Animator) SetupEndValues() error

SetupEndValues calls android.animation.Animator.setupEndValues.

func (*Animator) SetupStartValues

func (m *Animator) SetupStartValues() error

SetupStartValues calls android.animation.Animator.setupStartValues.

func (*Animator) Start

func (m *Animator) Start() error

Start calls android.animation.Animator.start.

type AnimatorAnimatorListener

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

AnimatorAnimatorListener wraps android.animation.Animator$AnimatorListener.

func (*AnimatorAnimatorListener) OnAnimationCancel

func (m *AnimatorAnimatorListener) OnAnimationCancel(arg0 *jni.Object) error

OnAnimationCancel calls android.animation.Animator$AnimatorListener.onAnimationCancel.

func (*AnimatorAnimatorListener) OnAnimationEnd

func (m *AnimatorAnimatorListener) OnAnimationEnd(arg0 *jni.Object) error

OnAnimationEnd calls android.animation.Animator$AnimatorListener.onAnimationEnd.

func (*AnimatorAnimatorListener) OnAnimationRepeat

func (m *AnimatorAnimatorListener) OnAnimationRepeat(arg0 *jni.Object) error

OnAnimationRepeat calls android.animation.Animator$AnimatorListener.onAnimationRepeat.

func (*AnimatorAnimatorListener) OnAnimationStart

func (m *AnimatorAnimatorListener) OnAnimationStart(arg0 *jni.Object) error

OnAnimationStart calls android.animation.Animator$AnimatorListener.onAnimationStart.

type AnimatorAnimatorPauseListener

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

AnimatorAnimatorPauseListener wraps android.animation.Animator$AnimatorPauseListener.

func (*AnimatorAnimatorPauseListener) OnAnimationPause

func (m *AnimatorAnimatorPauseListener) OnAnimationPause(arg0 *jni.Object) error

OnAnimationPause calls android.animation.Animator$AnimatorPauseListener.onAnimationPause.

func (*AnimatorAnimatorPauseListener) OnAnimationResume

func (m *AnimatorAnimatorPauseListener) OnAnimationResume(arg0 *jni.Object) error

OnAnimationResume calls android.animation.Animator$AnimatorPauseListener.onAnimationResume.

type AnimatorInflater

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

AnimatorInflater wraps android.animation.AnimatorInflater.

func NewAnimatorInflater

func NewAnimatorInflater(vm *jni.VM) (*AnimatorInflater, error)

NewAnimatorInflater creates a new android.animation.AnimatorInflater instance.

func (*AnimatorInflater) LoadAnimator

func (m *AnimatorInflater) LoadAnimator(arg0 *jni.Object, arg1 int32) (*jni.Object, error)

LoadAnimator calls android.animation.AnimatorInflater.loadAnimator.

func (*AnimatorInflater) LoadStateListAnimator

func (m *AnimatorInflater) LoadStateListAnimator(arg0 *jni.Object, arg1 int32) (*jni.Object, error)

LoadStateListAnimator calls android.animation.AnimatorInflater.loadStateListAnimator.

type AnimatorListenerAdapter

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

AnimatorListenerAdapter wraps android.animation.AnimatorListenerAdapter.

func (*AnimatorListenerAdapter) OnAnimationCancel

func (m *AnimatorListenerAdapter) OnAnimationCancel(arg0 *jni.Object) error

OnAnimationCancel calls android.animation.AnimatorListenerAdapter.onAnimationCancel.

func (*AnimatorListenerAdapter) OnAnimationEnd

func (m *AnimatorListenerAdapter) OnAnimationEnd(arg0 *jni.Object) error

OnAnimationEnd calls android.animation.AnimatorListenerAdapter.onAnimationEnd.

func (*AnimatorListenerAdapter) OnAnimationPause

func (m *AnimatorListenerAdapter) OnAnimationPause(arg0 *jni.Object) error

OnAnimationPause calls android.animation.AnimatorListenerAdapter.onAnimationPause.

func (*AnimatorListenerAdapter) OnAnimationRepeat

func (m *AnimatorListenerAdapter) OnAnimationRepeat(arg0 *jni.Object) error

OnAnimationRepeat calls android.animation.AnimatorListenerAdapter.onAnimationRepeat.

func (*AnimatorListenerAdapter) OnAnimationResume

func (m *AnimatorListenerAdapter) OnAnimationResume(arg0 *jni.Object) error

OnAnimationResume calls android.animation.AnimatorListenerAdapter.onAnimationResume.

func (*AnimatorListenerAdapter) OnAnimationStart

func (m *AnimatorListenerAdapter) OnAnimationStart(arg0 *jni.Object) error

OnAnimationStart calls android.animation.AnimatorListenerAdapter.onAnimationStart.

type AnimatorSet

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

AnimatorSet wraps android.animation.AnimatorSet.

func NewAnimatorSet

func NewAnimatorSet(vm *jni.VM) (*AnimatorSet, error)

NewAnimatorSet creates a new android.animation.AnimatorSet instance.

func (*AnimatorSet) Cancel

func (m *AnimatorSet) Cancel() error

Cancel calls android.animation.AnimatorSet.cancel.

func (*AnimatorSet) Clone0

func (m *AnimatorSet) Clone0() (*jni.Object, error)

Clone0 calls android.animation.AnimatorSet.clone.

func (*AnimatorSet) Clone0_1

func (m *AnimatorSet) Clone0_1() (*jni.Object, error)

Clone0_1 calls android.animation.AnimatorSet.clone.

func (*AnimatorSet) Clone0_2

func (m *AnimatorSet) Clone0_2() (*jni.Object, error)

Clone0_2 calls android.animation.AnimatorSet.clone.

func (*AnimatorSet) End

func (m *AnimatorSet) End() error

End calls android.animation.AnimatorSet.end.

func (*AnimatorSet) GetCurrentPlayTime

func (m *AnimatorSet) GetCurrentPlayTime() (int64, error)

GetCurrentPlayTime calls android.animation.AnimatorSet.getCurrentPlayTime.

func (*AnimatorSet) GetDuration

func (m *AnimatorSet) GetDuration() (int64, error)

GetDuration calls android.animation.AnimatorSet.getDuration.

func (*AnimatorSet) GetInterpolator

func (m *AnimatorSet) GetInterpolator() (*jni.Object, error)

GetInterpolator calls android.animation.AnimatorSet.getInterpolator.

func (*AnimatorSet) GetStartDelay

func (m *AnimatorSet) GetStartDelay() (int64, error)

GetStartDelay calls android.animation.AnimatorSet.getStartDelay.

func (*AnimatorSet) GetTotalDuration

func (m *AnimatorSet) GetTotalDuration() (int64, error)

GetTotalDuration calls android.animation.AnimatorSet.getTotalDuration.

func (*AnimatorSet) IsRunning

func (m *AnimatorSet) IsRunning() (bool, error)

IsRunning calls android.animation.AnimatorSet.isRunning.

func (*AnimatorSet) IsStarted

func (m *AnimatorSet) IsStarted() (bool, error)

IsStarted calls android.animation.AnimatorSet.isStarted.

func (*AnimatorSet) Pause

func (m *AnimatorSet) Pause() error

Pause calls android.animation.AnimatorSet.pause.

func (*AnimatorSet) Play

func (m *AnimatorSet) Play(arg0 *jni.Object) (*jni.Object, error)

Play calls android.animation.AnimatorSet.play.

func (*AnimatorSet) PlaySequentially

func (m *AnimatorSet) PlaySequentially(arg0 *jni.Object) error

PlaySequentially calls android.animation.AnimatorSet.playSequentially.

func (*AnimatorSet) PlayTogether

func (m *AnimatorSet) PlayTogether(arg0 *jni.Object) error

PlayTogether calls android.animation.AnimatorSet.playTogether.

func (*AnimatorSet) Resume

func (m *AnimatorSet) Resume() error

Resume calls android.animation.AnimatorSet.resume.

func (*AnimatorSet) Reverse

func (m *AnimatorSet) Reverse() error

Reverse calls android.animation.AnimatorSet.reverse.

func (*AnimatorSet) SetCurrentPlayTime

func (m *AnimatorSet) SetCurrentPlayTime(arg0 int64) error

SetCurrentPlayTime calls android.animation.AnimatorSet.setCurrentPlayTime.

func (*AnimatorSet) SetDuration1

func (m *AnimatorSet) SetDuration1(arg0 int64) (*jni.Object, error)

SetDuration1 calls android.animation.AnimatorSet.setDuration.

func (*AnimatorSet) SetDuration1_1

func (m *AnimatorSet) SetDuration1_1(arg0 int64) (*jni.Object, error)

SetDuration1_1 calls android.animation.AnimatorSet.setDuration.

func (*AnimatorSet) SetInterpolator

func (m *AnimatorSet) SetInterpolator(arg0 *jni.Object) error

SetInterpolator calls android.animation.AnimatorSet.setInterpolator.

func (*AnimatorSet) SetStartDelay

func (m *AnimatorSet) SetStartDelay(arg0 int64) error

SetStartDelay calls android.animation.AnimatorSet.setStartDelay.

func (*AnimatorSet) SetTarget

func (m *AnimatorSet) SetTarget(arg0 *jni.Object) error

SetTarget calls android.animation.AnimatorSet.setTarget.

func (*AnimatorSet) SetupEndValues

func (m *AnimatorSet) SetupEndValues() error

SetupEndValues calls android.animation.AnimatorSet.setupEndValues.

func (*AnimatorSet) SetupStartValues

func (m *AnimatorSet) SetupStartValues() error

SetupStartValues calls android.animation.AnimatorSet.setupStartValues.

func (*AnimatorSet) Start

func (m *AnimatorSet) Start() error

Start calls android.animation.AnimatorSet.start.

func (*AnimatorSet) ToString

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

ToString calls android.animation.AnimatorSet.toString.

type AnimatorSetBuilder

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

AnimatorSetBuilder wraps android.animation.AnimatorSet$Builder.

func (*AnimatorSetBuilder) After1

func (m *AnimatorSetBuilder) After1(arg0 *jni.Object) (*jni.Object, error)

After1 calls android.animation.AnimatorSet$Builder.after.

func (*AnimatorSetBuilder) After1_1

func (m *AnimatorSetBuilder) After1_1(arg0 int64) (*jni.Object, error)

After1_1 calls android.animation.AnimatorSet$Builder.after.

func (*AnimatorSetBuilder) Before

func (m *AnimatorSetBuilder) Before(arg0 *jni.Object) (*jni.Object, error)

Before calls android.animation.AnimatorSet$Builder.before.

func (*AnimatorSetBuilder) With

func (m *AnimatorSetBuilder) With(arg0 *jni.Object) (*jni.Object, error)

With calls android.animation.AnimatorSet$Builder.with.

type ArgbEvaluator

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

ArgbEvaluator wraps android.animation.ArgbEvaluator.

func NewArgbEvaluator

func NewArgbEvaluator(vm *jni.VM) (*ArgbEvaluator, error)

NewArgbEvaluator creates a new android.animation.ArgbEvaluator instance.

func (*ArgbEvaluator) Evaluate

func (m *ArgbEvaluator) Evaluate(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate calls android.animation.ArgbEvaluator.evaluate.

type FloatArrayEvaluator

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

FloatArrayEvaluator wraps android.animation.FloatArrayEvaluator.

func NewFloatArrayEvaluator

func NewFloatArrayEvaluator(vm *jni.VM) (*FloatArrayEvaluator, error)

NewFloatArrayEvaluator creates a new android.animation.FloatArrayEvaluator instance.

func (*FloatArrayEvaluator) Evaluate3

func (m *FloatArrayEvaluator) Evaluate3(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3 calls android.animation.FloatArrayEvaluator.evaluate.

func (*FloatArrayEvaluator) Evaluate3_1

func (m *FloatArrayEvaluator) Evaluate3_1(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3_1 calls android.animation.FloatArrayEvaluator.evaluate.

type FloatEvaluator

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

FloatEvaluator wraps android.animation.FloatEvaluator.

func NewFloatEvaluator

func NewFloatEvaluator(vm *jni.VM) (*FloatEvaluator, error)

NewFloatEvaluator creates a new android.animation.FloatEvaluator instance.

func (*FloatEvaluator) Evaluate3

func (m *FloatEvaluator) Evaluate3(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3 calls android.animation.FloatEvaluator.evaluate.

func (*FloatEvaluator) Evaluate3_1

func (m *FloatEvaluator) Evaluate3_1(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3_1 calls android.animation.FloatEvaluator.evaluate.

type IntArrayEvaluator

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

IntArrayEvaluator wraps android.animation.IntArrayEvaluator.

func NewIntArrayEvaluator

func NewIntArrayEvaluator(vm *jni.VM) (*IntArrayEvaluator, error)

NewIntArrayEvaluator creates a new android.animation.IntArrayEvaluator instance.

func (*IntArrayEvaluator) Evaluate3

func (m *IntArrayEvaluator) Evaluate3(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3 calls android.animation.IntArrayEvaluator.evaluate.

func (*IntArrayEvaluator) Evaluate3_1

func (m *IntArrayEvaluator) Evaluate3_1(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3_1 calls android.animation.IntArrayEvaluator.evaluate.

type IntEvaluator

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

IntEvaluator wraps android.animation.IntEvaluator.

func NewIntEvaluator

func NewIntEvaluator(vm *jni.VM) (*IntEvaluator, error)

NewIntEvaluator creates a new android.animation.IntEvaluator instance.

func (*IntEvaluator) Evaluate3

func (m *IntEvaluator) Evaluate3(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3 calls android.animation.IntEvaluator.evaluate.

func (*IntEvaluator) Evaluate3_1

func (m *IntEvaluator) Evaluate3_1(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3_1 calls android.animation.IntEvaluator.evaluate.

type Keyframe

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

Keyframe wraps android.animation.Keyframe.

func (*Keyframe) Clone0

func (m *Keyframe) Clone0() (*jni.Object, error)

Clone0 calls android.animation.Keyframe.clone.

func (*Keyframe) Clone0_1

func (m *Keyframe) Clone0_1() (*jni.Object, error)

Clone0_1 calls android.animation.Keyframe.clone.

func (*Keyframe) GetFraction

func (m *Keyframe) GetFraction() (float32, error)

GetFraction calls android.animation.Keyframe.getFraction.

func (*Keyframe) GetInterpolator

func (m *Keyframe) GetInterpolator() (*jni.Object, error)

GetInterpolator calls android.animation.Keyframe.getInterpolator.

func (*Keyframe) GetType

func (m *Keyframe) GetType() (*jni.Object, error)

GetType calls android.animation.Keyframe.getType.

func (*Keyframe) GetValue

func (m *Keyframe) GetValue() (*jni.Object, error)

GetValue calls android.animation.Keyframe.getValue.

func (*Keyframe) HasValue

func (m *Keyframe) HasValue() (bool, error)

HasValue calls android.animation.Keyframe.hasValue.

func (*Keyframe) OfFloat1

func (m *Keyframe) OfFloat1(arg0 float32) (*jni.Object, error)

OfFloat1 calls android.animation.Keyframe.ofFloat.

func (*Keyframe) OfFloat2_1

func (m *Keyframe) OfFloat2_1(arg0 float32, arg1 float32) (*jni.Object, error)

OfFloat2_1 calls android.animation.Keyframe.ofFloat.

func (*Keyframe) OfInt1

func (m *Keyframe) OfInt1(arg0 float32) (*jni.Object, error)

OfInt1 calls android.animation.Keyframe.ofInt.

func (*Keyframe) OfInt2_1

func (m *Keyframe) OfInt2_1(arg0 float32, arg1 int32) (*jni.Object, error)

OfInt2_1 calls android.animation.Keyframe.ofInt.

func (*Keyframe) OfObject1

func (m *Keyframe) OfObject1(arg0 float32) (*jni.Object, error)

OfObject1 calls android.animation.Keyframe.ofObject.

func (*Keyframe) OfObject2_1

func (m *Keyframe) OfObject2_1(arg0 float32, arg1 *jni.Object) (*jni.Object, error)

OfObject2_1 calls android.animation.Keyframe.ofObject.

func (*Keyframe) SetFraction

func (m *Keyframe) SetFraction(arg0 float32) error

SetFraction calls android.animation.Keyframe.setFraction.

func (*Keyframe) SetInterpolator

func (m *Keyframe) SetInterpolator(arg0 *jni.Object) error

SetInterpolator calls android.animation.Keyframe.setInterpolator.

func (*Keyframe) SetValue

func (m *Keyframe) SetValue(arg0 *jni.Object) error

SetValue calls android.animation.Keyframe.setValue.

type LayoutTransition

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

LayoutTransition wraps android.animation.LayoutTransition.

func NewLayoutTransition

func NewLayoutTransition(vm *jni.VM) (*LayoutTransition, error)

NewLayoutTransition creates a new android.animation.LayoutTransition instance.

func (*LayoutTransition) AddChild

func (m *LayoutTransition) AddChild(arg0 *jni.Object, arg1 *jni.Object) error

AddChild calls android.animation.LayoutTransition.addChild.

func (*LayoutTransition) AddTransitionListener

func (m *LayoutTransition) AddTransitionListener(arg0 *jni.Object) error

AddTransitionListener calls android.animation.LayoutTransition.addTransitionListener.

func (*LayoutTransition) DisableTransitionType

func (m *LayoutTransition) DisableTransitionType(arg0 int32) error

DisableTransitionType calls android.animation.LayoutTransition.disableTransitionType.

func (*LayoutTransition) EnableTransitionType

func (m *LayoutTransition) EnableTransitionType(arg0 int32) error

EnableTransitionType calls android.animation.LayoutTransition.enableTransitionType.

func (*LayoutTransition) GetAnimator

func (m *LayoutTransition) GetAnimator(arg0 int32) (*jni.Object, error)

GetAnimator calls android.animation.LayoutTransition.getAnimator.

func (*LayoutTransition) GetDuration

func (m *LayoutTransition) GetDuration(arg0 int32) (int64, error)

GetDuration calls android.animation.LayoutTransition.getDuration.

func (*LayoutTransition) GetInterpolator

func (m *LayoutTransition) GetInterpolator(arg0 int32) (*jni.Object, error)

GetInterpolator calls android.animation.LayoutTransition.getInterpolator.

func (*LayoutTransition) GetStagger

func (m *LayoutTransition) GetStagger(arg0 int32) (int64, error)

GetStagger calls android.animation.LayoutTransition.getStagger.

func (*LayoutTransition) GetStartDelay

func (m *LayoutTransition) GetStartDelay(arg0 int32) (int64, error)

GetStartDelay calls android.animation.LayoutTransition.getStartDelay.

func (*LayoutTransition) HideChild2

func (m *LayoutTransition) HideChild2(arg0 *jni.Object, arg1 *jni.Object) error

HideChild2 calls android.animation.LayoutTransition.hideChild.

func (*LayoutTransition) HideChild3_1

func (m *LayoutTransition) HideChild3_1(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 int32,
) error

HideChild3_1 calls android.animation.LayoutTransition.hideChild.

func (*LayoutTransition) IsChangingLayout

func (m *LayoutTransition) IsChangingLayout() (bool, error)

IsChangingLayout calls android.animation.LayoutTransition.isChangingLayout.

func (*LayoutTransition) IsRunning

func (m *LayoutTransition) IsRunning() (bool, error)

IsRunning calls android.animation.LayoutTransition.isRunning.

func (*LayoutTransition) IsTransitionTypeEnabled

func (m *LayoutTransition) IsTransitionTypeEnabled(arg0 int32) (bool, error)

IsTransitionTypeEnabled calls android.animation.LayoutTransition.isTransitionTypeEnabled.

func (*LayoutTransition) RemoveChild

func (m *LayoutTransition) RemoveChild(arg0 *jni.Object, arg1 *jni.Object) error

RemoveChild calls android.animation.LayoutTransition.removeChild.

func (*LayoutTransition) RemoveTransitionListener

func (m *LayoutTransition) RemoveTransitionListener(arg0 *jni.Object) error

RemoveTransitionListener calls android.animation.LayoutTransition.removeTransitionListener.

func (*LayoutTransition) SetAnimateParentHierarchy

func (m *LayoutTransition) SetAnimateParentHierarchy(arg0 bool) error

SetAnimateParentHierarchy calls android.animation.LayoutTransition.setAnimateParentHierarchy.

func (*LayoutTransition) SetAnimator

func (m *LayoutTransition) SetAnimator(arg0 int32, arg1 *jni.Object) error

SetAnimator calls android.animation.LayoutTransition.setAnimator.

func (*LayoutTransition) SetDuration1_1

func (m *LayoutTransition) SetDuration1_1(arg0 int64) error

SetDuration1_1 calls android.animation.LayoutTransition.setDuration.

func (*LayoutTransition) SetDuration2

func (m *LayoutTransition) SetDuration2(arg0 int32, arg1 int64) error

SetDuration2 calls android.animation.LayoutTransition.setDuration.

func (*LayoutTransition) SetInterpolator

func (m *LayoutTransition) SetInterpolator(arg0 int32, arg1 *jni.Object) error

SetInterpolator calls android.animation.LayoutTransition.setInterpolator.

func (*LayoutTransition) SetStagger

func (m *LayoutTransition) SetStagger(arg0 int32, arg1 int64) error

SetStagger calls android.animation.LayoutTransition.setStagger.

func (*LayoutTransition) SetStartDelay

func (m *LayoutTransition) SetStartDelay(arg0 int32, arg1 int64) error

SetStartDelay calls android.animation.LayoutTransition.setStartDelay.

func (*LayoutTransition) ShowChild2

func (m *LayoutTransition) ShowChild2(arg0 *jni.Object, arg1 *jni.Object) error

ShowChild2 calls android.animation.LayoutTransition.showChild.

func (*LayoutTransition) ShowChild3_1

func (m *LayoutTransition) ShowChild3_1(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 int32,
) error

ShowChild3_1 calls android.animation.LayoutTransition.showChild.

type LayoutTransitionTransitionListener

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

LayoutTransitionTransitionListener wraps android.animation.LayoutTransition$TransitionListener.

func (*LayoutTransitionTransitionListener) EndTransition

func (m *LayoutTransitionTransitionListener) EndTransition(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
	arg3 int32,
) error

EndTransition calls android.animation.LayoutTransition$TransitionListener.endTransition.

func (*LayoutTransitionTransitionListener) StartTransition

func (m *LayoutTransitionTransitionListener) StartTransition(
	arg0 *jni.Object,
	arg1 *jni.Object,
	arg2 *jni.Object,
	arg3 int32,
) error

StartTransition calls android.animation.LayoutTransition$TransitionListener.startTransition.

type ObjectAnimator

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

ObjectAnimator wraps android.animation.ObjectAnimator.

func NewObjectAnimator

func NewObjectAnimator(vm *jni.VM) (*ObjectAnimator, error)

NewObjectAnimator creates a new android.animation.ObjectAnimator instance.

func (*ObjectAnimator) Clone0

func (m *ObjectAnimator) Clone0() (*jni.Object, error)

Clone0 calls android.animation.ObjectAnimator.clone.

func (*ObjectAnimator) Clone0_1

func (m *ObjectAnimator) Clone0_1() (*jni.Object, error)

Clone0_1 calls android.animation.ObjectAnimator.clone.

func (*ObjectAnimator) Clone0_2

func (m *ObjectAnimator) Clone0_2() (*jni.Object, error)

Clone0_2 calls android.animation.ObjectAnimator.clone.

func (*ObjectAnimator) Clone0_3

func (m *ObjectAnimator) Clone0_3() (*jni.Object, error)

Clone0_3 calls android.animation.ObjectAnimator.clone.

func (*ObjectAnimator) GetPropertyName

func (m *ObjectAnimator) GetPropertyName() (string, error)

GetPropertyName calls android.animation.ObjectAnimator.getPropertyName.

func (*ObjectAnimator) GetTarget

func (m *ObjectAnimator) GetTarget() (*jni.Object, error)

GetTarget calls android.animation.ObjectAnimator.getTarget.

func (*ObjectAnimator) OfArgb

func (m *ObjectAnimator) OfArgb(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

OfArgb calls android.animation.ObjectAnimator.ofArgb.

func (*ObjectAnimator) OfFloat3

func (m *ObjectAnimator) OfFloat3(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

OfFloat3 calls android.animation.ObjectAnimator.ofFloat.

func (*ObjectAnimator) OfFloat4_1

func (m *ObjectAnimator) OfFloat4_1(
	arg0 *jni.Object,
	arg1 string,
	arg2 string,
	arg3 *jni.Object,
) (*jni.Object, error)

OfFloat4_1 calls android.animation.ObjectAnimator.ofFloat.

func (*ObjectAnimator) OfInt3

func (m *ObjectAnimator) OfInt3(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

OfInt3 calls android.animation.ObjectAnimator.ofInt.

func (*ObjectAnimator) OfInt4_1

func (m *ObjectAnimator) OfInt4_1(
	arg0 *jni.Object,
	arg1 string,
	arg2 string,
	arg3 *jni.Object,
) (*jni.Object, error)

OfInt4_1 calls android.animation.ObjectAnimator.ofInt.

func (*ObjectAnimator) OfMultiFloat3

func (m *ObjectAnimator) OfMultiFloat3(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

OfMultiFloat3 calls android.animation.ObjectAnimator.ofMultiFloat.

func (*ObjectAnimator) OfMultiFloat3_1

func (m *ObjectAnimator) OfMultiFloat3_1(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

OfMultiFloat3_1 calls android.animation.ObjectAnimator.ofMultiFloat.

func (*ObjectAnimator) OfMultiInt3

func (m *ObjectAnimator) OfMultiInt3(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

OfMultiInt3 calls android.animation.ObjectAnimator.ofMultiInt.

func (*ObjectAnimator) OfMultiInt3_1

func (m *ObjectAnimator) OfMultiInt3_1(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
) (*jni.Object, error)

OfMultiInt3_1 calls android.animation.ObjectAnimator.ofMultiInt.

func (*ObjectAnimator) OfObject

func (m *ObjectAnimator) OfObject(
	arg0 *jni.Object,
	arg1 string,
	arg2 *jni.Object,
	arg3 *jni.Object,
) (*jni.Object, error)

OfObject calls android.animation.ObjectAnimator.ofObject.

func (*ObjectAnimator) OfPropertyValuesHolder

func (m *ObjectAnimator) OfPropertyValuesHolder(arg0 *jni.Object, arg1 *jni.Object) (*jni.Object, error)

OfPropertyValuesHolder calls android.animation.ObjectAnimator.ofPropertyValuesHolder.

func (*ObjectAnimator) SetAutoCancel

func (m *ObjectAnimator) SetAutoCancel(arg0 bool) error

SetAutoCancel calls android.animation.ObjectAnimator.setAutoCancel.

func (*ObjectAnimator) SetDuration1

func (m *ObjectAnimator) SetDuration1(arg0 int64) (*jni.Object, error)

SetDuration1 calls android.animation.ObjectAnimator.setDuration.

func (*ObjectAnimator) SetDuration1_1

func (m *ObjectAnimator) SetDuration1_1(arg0 int64) (*jni.Object, error)

SetDuration1_1 calls android.animation.ObjectAnimator.setDuration.

func (*ObjectAnimator) SetDuration1_2

func (m *ObjectAnimator) SetDuration1_2(arg0 int64) (*jni.Object, error)

SetDuration1_2 calls android.animation.ObjectAnimator.setDuration.

func (*ObjectAnimator) SetFloatValues

func (m *ObjectAnimator) SetFloatValues(arg0 *jni.Object) error

SetFloatValues calls android.animation.ObjectAnimator.setFloatValues.

func (*ObjectAnimator) SetIntValues

func (m *ObjectAnimator) SetIntValues(arg0 *jni.Object) error

SetIntValues calls android.animation.ObjectAnimator.setIntValues.

func (*ObjectAnimator) SetObjectValues

func (m *ObjectAnimator) SetObjectValues(arg0 *jni.Object) error

SetObjectValues calls android.animation.ObjectAnimator.setObjectValues.

func (*ObjectAnimator) SetProperty

func (m *ObjectAnimator) SetProperty(arg0 *jni.Object) error

SetProperty calls android.animation.ObjectAnimator.setProperty.

func (*ObjectAnimator) SetPropertyName

func (m *ObjectAnimator) SetPropertyName(arg0 string) error

SetPropertyName calls android.animation.ObjectAnimator.setPropertyName.

func (*ObjectAnimator) SetTarget

func (m *ObjectAnimator) SetTarget(arg0 *jni.Object) error

SetTarget calls android.animation.ObjectAnimator.setTarget.

func (*ObjectAnimator) SetupEndValues

func (m *ObjectAnimator) SetupEndValues() error

SetupEndValues calls android.animation.ObjectAnimator.setupEndValues.

func (*ObjectAnimator) SetupStartValues

func (m *ObjectAnimator) SetupStartValues() error

SetupStartValues calls android.animation.ObjectAnimator.setupStartValues.

func (*ObjectAnimator) Start

func (m *ObjectAnimator) Start() error

Start calls android.animation.ObjectAnimator.start.

func (*ObjectAnimator) ToString

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

ToString calls android.animation.ObjectAnimator.toString.

type PointFEvaluator

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

PointFEvaluator wraps android.animation.PointFEvaluator.

func NewPointFEvaluator

func NewPointFEvaluator(vm *jni.VM) (*PointFEvaluator, error)

NewPointFEvaluator creates a new android.animation.PointFEvaluator instance.

func (*PointFEvaluator) Evaluate3

func (m *PointFEvaluator) Evaluate3(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3 calls android.animation.PointFEvaluator.evaluate.

func (*PointFEvaluator) Evaluate3_1

func (m *PointFEvaluator) Evaluate3_1(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3_1 calls android.animation.PointFEvaluator.evaluate.

type PropertyValuesHolder

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

PropertyValuesHolder wraps android.animation.PropertyValuesHolder.

func (*PropertyValuesHolder) Clone0

func (m *PropertyValuesHolder) Clone0() (*jni.Object, error)

Clone0 calls android.animation.PropertyValuesHolder.clone.

func (*PropertyValuesHolder) Clone0_1

func (m *PropertyValuesHolder) Clone0_1() (*jni.Object, error)

Clone0_1 calls android.animation.PropertyValuesHolder.clone.

func (*PropertyValuesHolder) GetPropertyName

func (m *PropertyValuesHolder) GetPropertyName() (string, error)

GetPropertyName calls android.animation.PropertyValuesHolder.getPropertyName.

func (*PropertyValuesHolder) OfFloat

func (m *PropertyValuesHolder) OfFloat(arg0 string, arg1 *jni.Object) (*jni.Object, error)

OfFloat calls android.animation.PropertyValuesHolder.ofFloat.

func (*PropertyValuesHolder) OfInt

func (m *PropertyValuesHolder) OfInt(arg0 string, arg1 *jni.Object) (*jni.Object, error)

OfInt calls android.animation.PropertyValuesHolder.ofInt.

func (*PropertyValuesHolder) OfKeyframe2

func (m *PropertyValuesHolder) OfKeyframe2(arg0 *jni.Object, arg1 *jni.Object) (*jni.Object, error)

OfKeyframe2 calls android.animation.PropertyValuesHolder.ofKeyframe.

func (*PropertyValuesHolder) OfKeyframe2_1

func (m *PropertyValuesHolder) OfKeyframe2_1(arg0 string, arg1 *jni.Object) (*jni.Object, error)

OfKeyframe2_1 calls android.animation.PropertyValuesHolder.ofKeyframe.

func (*PropertyValuesHolder) OfMultiFloat2

func (m *PropertyValuesHolder) OfMultiFloat2(arg0 string, arg1 *jni.Object) (*jni.Object, error)

OfMultiFloat2 calls android.animation.PropertyValuesHolder.ofMultiFloat.

func (*PropertyValuesHolder) OfMultiFloat2_1

func (m *PropertyValuesHolder) OfMultiFloat2_1(arg0 string, arg1 *jni.Object) (*jni.Object, error)

OfMultiFloat2_1 calls android.animation.PropertyValuesHolder.ofMultiFloat.

func (*PropertyValuesHolder) OfMultiInt2

func (m *PropertyValuesHolder) OfMultiInt2(arg0 string, arg1 *jni.Object) (*jni.Object, error)

OfMultiInt2 calls android.animation.PropertyValuesHolder.ofMultiInt.

func (*PropertyValuesHolder) OfMultiInt2_1

func (m *PropertyValuesHolder) OfMultiInt2_1(arg0 string, arg1 *jni.Object) (*jni.Object, error)

OfMultiInt2_1 calls android.animation.PropertyValuesHolder.ofMultiInt.

func (*PropertyValuesHolder) OfObject

func (m *PropertyValuesHolder) OfObject(
	arg0 string,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

OfObject calls android.animation.PropertyValuesHolder.ofObject.

func (*PropertyValuesHolder) SetConverter

func (m *PropertyValuesHolder) SetConverter(arg0 *jni.Object) error

SetConverter calls android.animation.PropertyValuesHolder.setConverter.

func (*PropertyValuesHolder) SetEvaluator

func (m *PropertyValuesHolder) SetEvaluator(arg0 *jni.Object) error

SetEvaluator calls android.animation.PropertyValuesHolder.setEvaluator.

func (*PropertyValuesHolder) SetFloatValues

func (m *PropertyValuesHolder) SetFloatValues(arg0 *jni.Object) error

SetFloatValues calls android.animation.PropertyValuesHolder.setFloatValues.

func (*PropertyValuesHolder) SetIntValues

func (m *PropertyValuesHolder) SetIntValues(arg0 *jni.Object) error

SetIntValues calls android.animation.PropertyValuesHolder.setIntValues.

func (*PropertyValuesHolder) SetKeyframes

func (m *PropertyValuesHolder) SetKeyframes(arg0 *jni.Object) error

SetKeyframes calls android.animation.PropertyValuesHolder.setKeyframes.

func (*PropertyValuesHolder) SetObjectValues

func (m *PropertyValuesHolder) SetObjectValues(arg0 *jni.Object) error

SetObjectValues calls android.animation.PropertyValuesHolder.setObjectValues.

func (*PropertyValuesHolder) SetProperty

func (m *PropertyValuesHolder) SetProperty(arg0 *jni.Object) error

SetProperty calls android.animation.PropertyValuesHolder.setProperty.

func (*PropertyValuesHolder) SetPropertyName

func (m *PropertyValuesHolder) SetPropertyName(arg0 string) error

SetPropertyName calls android.animation.PropertyValuesHolder.setPropertyName.

func (*PropertyValuesHolder) ToString

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

ToString calls android.animation.PropertyValuesHolder.toString.

type RectEvaluator

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

RectEvaluator wraps android.animation.RectEvaluator.

func NewRectEvaluator

func NewRectEvaluator(vm *jni.VM) (*RectEvaluator, error)

NewRectEvaluator creates a new android.animation.RectEvaluator instance.

func (*RectEvaluator) Evaluate3

func (m *RectEvaluator) Evaluate3(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3 calls android.animation.RectEvaluator.evaluate.

func (*RectEvaluator) Evaluate3_1

func (m *RectEvaluator) Evaluate3_1(
	arg0 float32,
	arg1 *jni.Object,
	arg2 *jni.Object,
) (*jni.Object, error)

Evaluate3_1 calls android.animation.RectEvaluator.evaluate.

type StateListAnimator

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

StateListAnimator wraps android.animation.StateListAnimator.

func NewStateListAnimator

func NewStateListAnimator(vm *jni.VM) (*StateListAnimator, error)

NewStateListAnimator creates a new android.animation.StateListAnimator instance.

func (*StateListAnimator) AddState

func (m *StateListAnimator) AddState(arg0 *jni.Object, arg1 *jni.Object) error

AddState calls android.animation.StateListAnimator.addState.

func (*StateListAnimator) Clone0

func (m *StateListAnimator) Clone0() (*jni.Object, error)

Clone0 calls android.animation.StateListAnimator.clone.

func (*StateListAnimator) Clone0_1

func (m *StateListAnimator) Clone0_1() (*jni.Object, error)

Clone0_1 calls android.animation.StateListAnimator.clone.

func (*StateListAnimator) JumpToCurrentState

func (m *StateListAnimator) JumpToCurrentState() error

JumpToCurrentState calls android.animation.StateListAnimator.jumpToCurrentState.

type TimeAnimator

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

TimeAnimator wraps android.animation.TimeAnimator.

func NewTimeAnimator

func NewTimeAnimator(vm *jni.VM) (*TimeAnimator, error)

NewTimeAnimator creates a new android.animation.TimeAnimator instance.

func (*TimeAnimator) SetCurrentPlayTime

func (m *TimeAnimator) SetCurrentPlayTime(arg0 int64) error

SetCurrentPlayTime calls android.animation.TimeAnimator.setCurrentPlayTime.

func (*TimeAnimator) SetTimeListener

func (m *TimeAnimator) SetTimeListener(arg0 *jni.Object) error

SetTimeListener calls android.animation.TimeAnimator.setTimeListener.

func (*TimeAnimator) Start

func (m *TimeAnimator) Start() error

Start calls android.animation.TimeAnimator.start.

type TimeAnimatorTimeListener

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

TimeAnimatorTimeListener wraps android.animation.TimeAnimator$TimeListener.

func (*TimeAnimatorTimeListener) OnTimeUpdate

func (m *TimeAnimatorTimeListener) OnTimeUpdate(
	arg0 *jni.Object,
	arg1 int64,
	arg2 int64,
) error

OnTimeUpdate calls android.animation.TimeAnimator$TimeListener.onTimeUpdate.

type TimeInterpolator

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

TimeInterpolator wraps android.animation.TimeInterpolator.

func (*TimeInterpolator) GetInterpolation

func (m *TimeInterpolator) GetInterpolation(arg0 float32) (float32, error)

GetInterpolation calls android.animation.TimeInterpolator.getInterpolation.

type ValueAnimator

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

ValueAnimator wraps android.animation.ValueAnimator.

func NewValueAnimator

func NewValueAnimator(vm *jni.VM) (*ValueAnimator, error)

NewValueAnimator creates a new android.animation.ValueAnimator instance.

func (*ValueAnimator) AddUpdateListener

func (m *ValueAnimator) AddUpdateListener(arg0 *jni.Object) error

AddUpdateListener calls android.animation.ValueAnimator.addUpdateListener.

func (*ValueAnimator) AreAnimatorsEnabled

func (m *ValueAnimator) AreAnimatorsEnabled() (bool, error)

AreAnimatorsEnabled calls android.animation.ValueAnimator.areAnimatorsEnabled.

func (*ValueAnimator) Cancel

func (m *ValueAnimator) Cancel() error

Cancel calls android.animation.ValueAnimator.cancel.

func (*ValueAnimator) Clone0

func (m *ValueAnimator) Clone0() (*jni.Object, error)

Clone0 calls android.animation.ValueAnimator.clone.

func (*ValueAnimator) Clone0_1

func (m *ValueAnimator) Clone0_1() (*jni.Object, error)

Clone0_1 calls android.animation.ValueAnimator.clone.

func (*ValueAnimator) Clone0_2

func (m *ValueAnimator) Clone0_2() (*jni.Object, error)

Clone0_2 calls android.animation.ValueAnimator.clone.

func (*ValueAnimator) End

func (m *ValueAnimator) End() error

End calls android.animation.ValueAnimator.end.

func (*ValueAnimator) GetAnimatedFraction

func (m *ValueAnimator) GetAnimatedFraction() (float32, error)

GetAnimatedFraction calls android.animation.ValueAnimator.getAnimatedFraction.

func (*ValueAnimator) GetAnimatedValue0

func (m *ValueAnimator) GetAnimatedValue0() (*jni.Object, error)

GetAnimatedValue0 calls android.animation.ValueAnimator.getAnimatedValue.

func (*ValueAnimator) GetAnimatedValue1_1

func (m *ValueAnimator) GetAnimatedValue1_1(arg0 string) (*jni.Object, error)

GetAnimatedValue1_1 calls android.animation.ValueAnimator.getAnimatedValue.

func (*ValueAnimator) GetCurrentPlayTime

func (m *ValueAnimator) GetCurrentPlayTime() (int64, error)

GetCurrentPlayTime calls android.animation.ValueAnimator.getCurrentPlayTime.

func (*ValueAnimator) GetDuration

func (m *ValueAnimator) GetDuration() (int64, error)

GetDuration calls android.animation.ValueAnimator.getDuration.

func (*ValueAnimator) GetDurationScale

func (m *ValueAnimator) GetDurationScale() (float32, error)

GetDurationScale calls android.animation.ValueAnimator.getDurationScale.

func (*ValueAnimator) GetFrameDelay

func (m *ValueAnimator) GetFrameDelay() (int64, error)

GetFrameDelay calls android.animation.ValueAnimator.getFrameDelay.

func (*ValueAnimator) GetInterpolator

func (m *ValueAnimator) GetInterpolator() (*jni.Object, error)

GetInterpolator calls android.animation.ValueAnimator.getInterpolator.

func (*ValueAnimator) GetRepeatCount

func (m *ValueAnimator) GetRepeatCount() (int32, error)

GetRepeatCount calls android.animation.ValueAnimator.getRepeatCount.

func (*ValueAnimator) GetRepeatMode

func (m *ValueAnimator) GetRepeatMode() (int32, error)

GetRepeatMode calls android.animation.ValueAnimator.getRepeatMode.

func (*ValueAnimator) GetStartDelay

func (m *ValueAnimator) GetStartDelay() (int64, error)

GetStartDelay calls android.animation.ValueAnimator.getStartDelay.

func (*ValueAnimator) GetTotalDuration

func (m *ValueAnimator) GetTotalDuration() (int64, error)

GetTotalDuration calls android.animation.ValueAnimator.getTotalDuration.

func (*ValueAnimator) GetValues

func (m *ValueAnimator) GetValues() (*jni.Object, error)

GetValues calls android.animation.ValueAnimator.getValues.

func (*ValueAnimator) IsRunning

func (m *ValueAnimator) IsRunning() (bool, error)

IsRunning calls android.animation.ValueAnimator.isRunning.

func (*ValueAnimator) IsStarted

func (m *ValueAnimator) IsStarted() (bool, error)

IsStarted calls android.animation.ValueAnimator.isStarted.

func (*ValueAnimator) OfArgb

func (m *ValueAnimator) OfArgb(arg0 *jni.Object) (*jni.Object, error)

OfArgb calls android.animation.ValueAnimator.ofArgb.

func (*ValueAnimator) OfFloat

func (m *ValueAnimator) OfFloat(arg0 *jni.Object) (*jni.Object, error)

OfFloat calls android.animation.ValueAnimator.ofFloat.

func (*ValueAnimator) OfInt

func (m *ValueAnimator) OfInt(arg0 *jni.Object) (*jni.Object, error)

OfInt calls android.animation.ValueAnimator.ofInt.

func (*ValueAnimator) OfObject

func (m *ValueAnimator) OfObject(arg0 *jni.Object, arg1 *jni.Object) (*jni.Object, error)

OfObject calls android.animation.ValueAnimator.ofObject.

func (*ValueAnimator) OfPropertyValuesHolder

func (m *ValueAnimator) OfPropertyValuesHolder(arg0 *jni.Object) (*jni.Object, error)

OfPropertyValuesHolder calls android.animation.ValueAnimator.ofPropertyValuesHolder.

func (*ValueAnimator) Pause

func (m *ValueAnimator) Pause() error

Pause calls android.animation.ValueAnimator.pause.

func (*ValueAnimator) RegisterDurationScaleChangeListener

func (m *ValueAnimator) RegisterDurationScaleChangeListener(arg0 *jni.Object) (bool, error)

RegisterDurationScaleChangeListener calls android.animation.ValueAnimator.registerDurationScaleChangeListener.

func (*ValueAnimator) RemoveAllUpdateListeners

func (m *ValueAnimator) RemoveAllUpdateListeners() error

RemoveAllUpdateListeners calls android.animation.ValueAnimator.removeAllUpdateListeners.

func (*ValueAnimator) RemoveUpdateListener

func (m *ValueAnimator) RemoveUpdateListener(arg0 *jni.Object) error

RemoveUpdateListener calls android.animation.ValueAnimator.removeUpdateListener.

func (*ValueAnimator) Resume

func (m *ValueAnimator) Resume() error

Resume calls android.animation.ValueAnimator.resume.

func (*ValueAnimator) Reverse

func (m *ValueAnimator) Reverse() error

Reverse calls android.animation.ValueAnimator.reverse.

func (*ValueAnimator) SetCurrentFraction

func (m *ValueAnimator) SetCurrentFraction(arg0 float32) error

SetCurrentFraction calls android.animation.ValueAnimator.setCurrentFraction.

func (*ValueAnimator) SetCurrentPlayTime

func (m *ValueAnimator) SetCurrentPlayTime(arg0 int64) error

SetCurrentPlayTime calls android.animation.ValueAnimator.setCurrentPlayTime.

func (*ValueAnimator) SetDuration1

func (m *ValueAnimator) SetDuration1(arg0 int64) (*jni.Object, error)

SetDuration1 calls android.animation.ValueAnimator.setDuration.

func (*ValueAnimator) SetDuration1_1

func (m *ValueAnimator) SetDuration1_1(arg0 int64) (*jni.Object, error)

SetDuration1_1 calls android.animation.ValueAnimator.setDuration.

func (*ValueAnimator) SetEvaluator

func (m *ValueAnimator) SetEvaluator(arg0 *jni.Object) error

SetEvaluator calls android.animation.ValueAnimator.setEvaluator.

func (*ValueAnimator) SetFloatValues

func (m *ValueAnimator) SetFloatValues(arg0 *jni.Object) error

SetFloatValues calls android.animation.ValueAnimator.setFloatValues.

func (*ValueAnimator) SetFrameDelay

func (m *ValueAnimator) SetFrameDelay(arg0 int64) error

SetFrameDelay calls android.animation.ValueAnimator.setFrameDelay.

func (*ValueAnimator) SetIntValues

func (m *ValueAnimator) SetIntValues(arg0 *jni.Object) error

SetIntValues calls android.animation.ValueAnimator.setIntValues.

func (*ValueAnimator) SetInterpolator

func (m *ValueAnimator) SetInterpolator(arg0 *jni.Object) error

SetInterpolator calls android.animation.ValueAnimator.setInterpolator.

func (*ValueAnimator) SetObjectValues

func (m *ValueAnimator) SetObjectValues(arg0 *jni.Object) error

SetObjectValues calls android.animation.ValueAnimator.setObjectValues.

func (*ValueAnimator) SetRepeatCount

func (m *ValueAnimator) SetRepeatCount(arg0 int32) error

SetRepeatCount calls android.animation.ValueAnimator.setRepeatCount.

func (*ValueAnimator) SetRepeatMode

func (m *ValueAnimator) SetRepeatMode(arg0 int32) error

SetRepeatMode calls android.animation.ValueAnimator.setRepeatMode.

func (*ValueAnimator) SetStartDelay

func (m *ValueAnimator) SetStartDelay(arg0 int64) error

SetStartDelay calls android.animation.ValueAnimator.setStartDelay.

func (*ValueAnimator) SetValues

func (m *ValueAnimator) SetValues(arg0 *jni.Object) error

SetValues calls android.animation.ValueAnimator.setValues.

func (*ValueAnimator) Start

func (m *ValueAnimator) Start() error

Start calls android.animation.ValueAnimator.start.

func (*ValueAnimator) ToString

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

ToString calls android.animation.ValueAnimator.toString.

func (*ValueAnimator) UnregisterDurationScaleChangeListener

func (m *ValueAnimator) UnregisterDurationScaleChangeListener(arg0 *jni.Object) (bool, error)

UnregisterDurationScaleChangeListener calls android.animation.ValueAnimator.unregisterDurationScaleChangeListener.

type ValueAnimatorAnimatorUpdateListener

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

ValueAnimatorAnimatorUpdateListener wraps android.animation.ValueAnimator$AnimatorUpdateListener.

func (*ValueAnimatorAnimatorUpdateListener) OnAnimationUpdate

func (m *ValueAnimatorAnimatorUpdateListener) OnAnimationUpdate(arg0 *jni.Object) error

OnAnimationUpdate calls android.animation.ValueAnimator$AnimatorUpdateListener.onAnimationUpdate.

type ValueAnimatorDurationScaleChangeListener

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

ValueAnimatorDurationScaleChangeListener wraps android.animation.ValueAnimator$DurationScaleChangeListener.

func (*ValueAnimatorDurationScaleChangeListener) OnChanged

OnChanged calls android.animation.ValueAnimator$DurationScaleChangeListener.onChanged.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL