PopupWindow 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
PopupWindow() |
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다. |
PopupWindow(Context) |
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다. |
PopupWindow(View) |
를 표시할 수 있는 포커스가 없는 새 팝업 창을 만듭니다 |
PopupWindow(Context, IAttributeSet) |
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다. |
PopupWindow(Int32, Int32) |
포커스가 없는 빈 팝업 창을 새로 만듭니다. |
PopupWindow(IntPtr, JniHandleOwnership) |
JNI 개체의 관리되는 표현을 만들 때 사용되는 생성자입니다. 런타임에서 호출합니다. |
PopupWindow(Context, IAttributeSet, Int32) |
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다. |
PopupWindow(View, Int32, Int32) |
를 표시할 수 있는 포커스가 없는 새 팝업 창을 만듭니다 |
PopupWindow(Context, IAttributeSet, Int32, Int32) |
포커스가 없는 새 차원 팝업 창(0,0)을 만듭니다. |
PopupWindow(View, Int32, Int32, Boolean) |
를 표시할 수 있는 새 팝업 창을 만듭니다 |
PopupWindow()
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
[Android.Runtime.Register(".ctor", "()V", "")]
public PopupWindow ();
- 특성
설명
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
팝업은 배경을 제공하지 않습니다. 콘텐츠 보기에서 처리해야 합니다.
에 대한 android.widget.PopupWindow.PopupWindow()
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(Context)
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "")]
public PopupWindow (Android.Content.Context? context);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;)V", "")>]
new Android.Widget.PopupWindow : Android.Content.Context -> Android.Widget.PopupWindow
매개 변수
- context
- Context
- 특성
설명
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
팝업은 배경을 제공합니다.
에 대한 android.widget.PopupWindow.PopupWindow(android.content.Context)
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(View)
를 표시할 수 있는 포커스가 없는 새 팝업 창을 만듭니다 contentView
.
[Android.Runtime.Register(".ctor", "(Landroid/view/View;)V", "")]
public PopupWindow (Android.Views.View? contentView);
[<Android.Runtime.Register(".ctor", "(Landroid/view/View;)V", "")>]
new Android.Widget.PopupWindow : Android.Views.View -> Android.Widget.PopupWindow
매개 변수
- contentView
- View
팝업의 콘텐츠
- 특성
설명
를 표시할 수 있는 포커스가 없는 새 팝업 창을 만듭니다 contentView
. 창의 차원은 (0,0)입니다.
팝업은 배경을 제공하지 않습니다. 콘텐츠 보기에서 처리해야 합니다.
에 대한 android.widget.PopupWindow.PopupWindow(android.view.View)
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(Context, IAttributeSet)
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")]
public PopupWindow (Android.Content.Context? context, Android.Util.IAttributeSet? attrs);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;)V", "")>]
new Android.Widget.PopupWindow : Android.Content.Context * Android.Util.IAttributeSet -> Android.Widget.PopupWindow
매개 변수
- context
- Context
- attrs
- IAttributeSet
- 특성
설명
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
팝업은 배경을 제공합니다.
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(Int32, Int32)
포커스가 없는 빈 팝업 창을 새로 만듭니다.
[Android.Runtime.Register(".ctor", "(II)V", "")]
public PopupWindow (int width, int height);
[<Android.Runtime.Register(".ctor", "(II)V", "")>]
new Android.Widget.PopupWindow : int * int -> Android.Widget.PopupWindow
매개 변수
- width
- Int32
팝업의 너비
- height
- Int32
팝업의 높이
- 특성
설명
포커스가 없는 빈 팝업 창을 새로 만듭니다. 창의 차원을 이 생성자에 전달해야 합니다.
팝업은 배경을 제공하지 않습니다. 콘텐츠 보기에서 처리해야 합니다.
에 대한 android.widget.PopupWindow.PopupWindow(int, int)
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(IntPtr, JniHandleOwnership)
JNI 개체의 관리되는 표현을 만들 때 사용되는 생성자입니다. 런타임에서 호출합니다.
protected PopupWindow (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Widget.PopupWindow : nativeint * Android.Runtime.JniHandleOwnership -> Android.Widget.PopupWindow
매개 변수
- transfer
- JniHandleOwnership
JniHandleOwnership처리 방법을 나타내는 AjavaReference
설명
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(Context, IAttributeSet, Int32)
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;I)V", "")]
public PopupWindow (Android.Content.Context? context, Android.Util.IAttributeSet? attrs, int defStyleAttr);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;I)V", "")>]
new Android.Widget.PopupWindow : Android.Content.Context * Android.Util.IAttributeSet * int -> Android.Widget.PopupWindow
매개 변수
- context
- Context
- attrs
- IAttributeSet
- defStyleAttr
- Int32
- 특성
설명
포커스가 없는 비어 있는 새 팝업 창(0,0)을 만듭니다.
팝업은 배경을 제공합니다.
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(View, Int32, Int32)
를 표시할 수 있는 포커스가 없는 새 팝업 창을 만듭니다 contentView
.
[Android.Runtime.Register(".ctor", "(Landroid/view/View;II)V", "")]
public PopupWindow (Android.Views.View? contentView, int width, int height);
[<Android.Runtime.Register(".ctor", "(Landroid/view/View;II)V", "")>]
new Android.Widget.PopupWindow : Android.Views.View * int * int -> Android.Widget.PopupWindow
매개 변수
- contentView
- View
팝업의 콘텐츠
- width
- Int32
팝업의 너비
- height
- Int32
팝업의 높이
- 특성
설명
를 표시할 수 있는 포커스가 없는 새 팝업 창을 만듭니다 contentView
. 창의 차원을 이 생성자에 전달해야 합니다.
팝업은 배경을 제공하지 않습니다. 콘텐츠 보기에서 처리해야 합니다.
에 대한 android.widget.PopupWindow.PopupWindow(android.view.View, int, int)
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(Context, IAttributeSet, Int32, Int32)
포커스가 없는 새 차원 팝업 창(0,0)을 만듭니다.
[Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;II)V", "")]
public PopupWindow (Android.Content.Context? context, Android.Util.IAttributeSet? attrs, int defStyleAttr, int defStyleRes);
[<Android.Runtime.Register(".ctor", "(Landroid/content/Context;Landroid/util/AttributeSet;II)V", "")>]
new Android.Widget.PopupWindow : Android.Content.Context * Android.Util.IAttributeSet * int * int -> Android.Widget.PopupWindow
매개 변수
- context
- Context
- attrs
- IAttributeSet
- defStyleAttr
- Int32
- defStyleRes
- Int32
- 특성
설명
포커스가 없는 새 차원 팝업 창(0,0)을 만듭니다.
팝업은 배경을 제공하지 않습니다.
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.
적용 대상
PopupWindow(View, Int32, Int32, Boolean)
를 표시할 수 있는 새 팝업 창을 만듭니다 contentView
.
[Android.Runtime.Register(".ctor", "(Landroid/view/View;IIZ)V", "")]
public PopupWindow (Android.Views.View? contentView, int width, int height, bool focusable);
[<Android.Runtime.Register(".ctor", "(Landroid/view/View;IIZ)V", "")>]
new Android.Widget.PopupWindow : Android.Views.View * int * int * bool -> Android.Widget.PopupWindow
매개 변수
- contentView
- View
팝업의 콘텐츠
- width
- Int32
팝업의 너비
- height
- Int32
팝업의 높이
- focusable
- Boolean
팝업에 집중할 수 있으면 true, 그렇지 않으면 false입니다.
- 특성
설명
를 표시할 수 있는 새 팝업 창을 만듭니다 contentView
. 창의 차원을 이 생성자에 전달해야 합니다.
팝업은 배경을 제공하지 않습니다. 콘텐츠 보기에서 처리해야 합니다.
에 대한 android.widget.PopupWindow.PopupWindow(android.view.View, int, int, boolean)
Java 설명서
이 페이지의 일부는 Android 오픈 소스 프로젝트에서 만들고 공유하고 Creative Commons 2.5 특성 라이선스에 설명된 용어에 따라 사용되는 작업을 기반으로 하는 수정 사항입니다.