다음을 통해 공유


Scroller 생성자

정의

오버로드

Scroller(Context)

기본 기간 및 보간기를 사용하여 스크롤기를 만듭니다.

Scroller(Context, IInterpolator)

지정된 보간기를 사용하여 스크롤기를 만듭니다.

Scroller(IntPtr, JniHandleOwnership)

JNI 개체의 관리되는 표현을 만들 때 사용되는 생성자입니다. 런타임에서 호출합니다.

Scroller(Context, IInterpolator, Boolean)

지정된 보간기를 사용하여 스크롤기를 만듭니다.

Scroller(Context)

기본 기간 및 보간기를 사용하여 스크롤기를 만듭니다.

[Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "")]
public Scroller (Android.Content.Context? context);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "")>]
new Android.Widget.Scroller : Android.Content.Context -> Android.Widget.Scroller

매개 변수

context
Context
특성

설명

기본 기간 및 보간기를 사용하여 스크롤기를 만듭니다.

에 대한 android.widget.Scroller.Scroller(android.content.Context)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

Scroller(Context, IInterpolator)

지정된 보간기를 사용하여 스크롤기를 만듭니다.

[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/view/animation/Interpolator;)V", "")]
public Scroller (Android.Content.Context? context, Android.Views.Animations.IInterpolator? interpolator);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/view/animation/Interpolator;)V", "")>]
new Android.Widget.Scroller : Android.Content.Context * Android.Views.Animations.IInterpolator -> Android.Widget.Scroller

매개 변수

context
Context
interpolator
IInterpolator
특성

설명

지정된 보간기를 사용하여 스크롤기를 만듭니다. 보간기가 null이면 기본(점성) 보간기가 사용됩니다. "Flywheel" 동작은 Honeycomb 또는 최신을 대상으로 하는 앱에 적용됩니다.

에 대한 android.widget.Scroller.Scroller(android.content.Context, android.view.animation.Interpolator)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

Scroller(IntPtr, JniHandleOwnership)

JNI 개체의 관리되는 표현을 만들 때 사용되는 생성자입니다. 런타임에서 호출합니다.

protected Scroller (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Widget.Scroller : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.Scroller

매개 변수

javaReference
IntPtr

nativeint

IntPtrJNI(Java Native Interface) 개체 참조를 포함하는 개체입니다.

transfer
JniHandleOwnership

JniHandleOwnership처리 방법을 나타내는 AjavaReference

설명

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상

Scroller(Context, IInterpolator, Boolean)

지정된 보간기를 사용하여 스크롤기를 만듭니다.

[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/view/animation/Interpolator;Z)V", "")]
public Scroller (Android.Content.Context? context, Android.Views.Animations.IInterpolator? interpolator, bool flywheel);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/view/animation/Interpolator;Z)V", "")>]
new Android.Widget.Scroller : Android.Content.Context * Android.Views.Animations.IInterpolator * bool -> Android.Widget.Scroller

매개 변수

context
Context
interpolator
IInterpolator
flywheel
Boolean
특성

설명

지정된 보간기를 사용하여 스크롤기를 만듭니다. 보간기가 null이면 기본(점성) 보간기가 사용됩니다. fling에서 점진적인 "플라이 휠" 동작을 지원할지 여부를 지정합니다.

에 대한 android.widget.Scroller.Scroller(android.content.Context, android.view.animation.Interpolator, boolean)Java 설명서

이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.

적용 대상