다음을 통해 공유


InCallService 클래스

정의

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

[Android.Runtime.Register("android/telecom/InCallService", ApiSince=23, DoNotGenerateAcw=true)]
public abstract class InCallService : Android.App.Service
[<Android.Runtime.Register("android/telecom/InCallService", ApiSince=23, DoNotGenerateAcw=true)>]
type InCallService = class
    inherit Service
상속
특성

설명

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다. <h2>기본 전화 앱<이 되기/h2> 기본 전화 걸기/전화 앱은 디바이스가 통화 중일 때 통화 중인 사용자 인터페이스를 제공하는 앱입니다. 또한 사용자에게 호출을 시작하고 디바이스에서 호출 기록을 볼 수 있는 수단을 제공합니다. 디바이스는 시스템에서 제공하는 기본 전화 걸기/전화 앱과 함께 번들로 제공됩니다. 사용자는 단일 앱을 선택하여 시스템 앱에서 이 역할을 인수할 수 있습니다. 이 역할을 수행하려는 앱은 역할을 채우 android.app.role.RoleManager#ROLE_DIALER 도록 요청하는 데 사용합니다android.app.role.RoleManager.

기본 전화 앱은 디바이스가 통화 중이고 디바이스가 자동차 모드(예 UiModeManager#getCurrentModeType() : 그렇지 않음)에 있지 않은 android.content.res.Configuration#UI_MODE_TYPE_CAR동안 사용자 인터페이스를 제공합니다.

역할을 채우 android.app.role.RoleManager#ROLE_DIALER 려면 앱이 여러 요구 사항을 충족해야 합니다. <ul><li>는 의도를 Intent#ACTION_DIAL 처리해야 합니다. 즉, 사용자가 발신 통화를 시작할 수 있도록 앱에서 다이얼 패드 UI를 제공해야 합니다.</li><li>API를 InCallService 완전히 구현하고 들어오는 호출 UI와 진행 중인 호출 UI를 모두 제공해야 합니다.</li></ul>

참고: 바인딩하는 동안 반환을 nullInCallService 채우는 android.app.role.RoleManager#ROLE_DIALER 앱이 반환되는 경우 Telecom 프레임워크는 디바이스에 미리 로드된 다이얼러 앱을 사용하여 자동으로 대체됩니다. 시스템은 미리 로드된 전화 걸기 앱을 사용하여 통화가 계속되었음을 알리는 알림을 사용자에게 표시합니다. 앱은 바인딩을 null 반환해서는 안 됩니다. 이렇게 하면 앱이 요구 사항을 android.app.role.RoleManager#ROLE_DIALER충족하지 않습니다.

참고: 앱이 런타임에 채워 android.app.role.RoleManager#ROLE_DIALER 지고 변경되어 이 역할 android.app.role.RoleManager 의 요구 사항을 더 이상 충족하지 않는 경우 자동으로 역할에서 앱을 제거하고 앱을 닫습니다. 예를 들어 앱이 매니페스트에서 선언하는 것을 프로그래밍 방식으로 사용하지 않도록 설정하는 InCallService 데 사용하는 android.content.pm.PackageManager#setComponentEnabledSetting(ComponentName, int, int) 경우 앱은 더 이상 예상되는 android.app.role.RoleManager#ROLE_DIALER요구 사항을 충족하지 않습니다.

미리 로드된 다이얼러는 앱이 역할을 채우는 android.app.role.RoleManager#ROLE_DIALER 경우에도 사용자가 긴급 통화를 할 때 항상 사용됩니다. 긴급 통화를 할 때 최적의 환경을 보장하기 위해 기본 전화 걸기는 항상 통화를 하는 데 사용해야 android.telecom.TelecomManager#placeCall(Uri, Bundle) 합니다(긴급 전화 포함). 이렇게 하면 플랫폼이 기본 전화 걸기에서 요청이 제공되었는지 확인할 수 있습니다. 미리 로드되지 않은 전화 걸기 앱이 긴급 통화를 하는 데 사용하는 Intent#ACTION_CALL 경우 확인을 위해 미리 로드된 전화 걸기 앱 Intent#ACTION_DIAL 으로 발생합니다. 이는 최적이 아닌 사용자 환경입니다.

다음은 에 대한 매니페스트 등록 예제입니다 InCallService. 메타 데이터는 TelecomManager#METADATA_IN_CALL_SERVICE_UI 이 특정 InCallService 구현이 기본 제공 호출 UI를 대체하려고 했음을 나타냅니다. 메타 데이터는 TelecomManager#METADATA_IN_CALL_SERVICE_RINGING 수신 호출에 대해 벨소리를 재생한다는 것을 InCallService 나타냅니다. 수신 전화 UI를 표시하고 앱에서 벨소리를 재생하는 방법에 대한 자세한 내용은 아래를 참조하세요.

{@code
<service android:name="your.package.YourInCallServiceImplementation"
                     android:permission="android.permission.BIND_INCALL_SERVICE"
                     android:exported="true">
<meta-data android:name="android.telecom.IN_CALL_SERVICE_UI" android:value="true" />
<meta-data android:name="android.telecom.IN_CALL_SERVICE_RINGING"
                     android:value="true" />
<intent-filter>
<action android:name="android.telecom.InCallService"/>
</intent-filter>
</service>
            }

<em>참고: 특성android:exported="false"으로 표시 InCallService 해서는 안 됩니다. 이렇게 하면 호출 중에 구현에 바인딩하지 못할 수 있습니다.</그들>

API를 구현하는 InCallService 것 외에도 의도를 처리하는 Intent#ACTION_DIAL 매니페스트에서 활동을 선언해야 합니다. 아래 예제에서는 이 작업을 수행하는 방법을 보여 줍니다.

{@code
<activity android:name="your.package.YourDialerActivity"
                      android:label="@string/yourDialerActivityLabel">
<intent-filter>
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.DIAL" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="tel" />
</intent-filter>
</activity>
            }

사용자가 애플리케이션을 설치하고 처음으로 실행하는 경우 사용자에게 앱이 새 기본 전화 앱이 되도록 할지 묻는 메시지를 표시해야 합니다 android.app.role.RoleManager . <p id="requestRole"> 아래 코드는 앱이 기본 전화/전화 걸기 앱이 되도록 요청할 수 있는 방법을 보여줍니다.

{@code
            private static final int REQUEST_ID = 1;

            public void requestRole() {
                RoleManager roleManager = (RoleManager) getSystemService(ROLE_SERVICE);
                Intent intent = roleManager.createRequestRoleIntent(RoleManager.ROLE_DIALER);
                startActivityForResult(intent, REQUEST_ID);
            }

            &#64;Override
            public void onActivityResult(int requestCode, int resultCode, Intent data) {
                if (requestCode == REQUEST_ID) {
                    if (resultCode == android.app.Activity.RESULT_OK) {
                        // Your app is now the default dialer app
                    } else {
                        // Your app is not the default dialer app
                    }
                }
            }
            }

<p id="companionInCallService"><h3>웨어러블 디바이스<용 InCallService에 대한 액세스/h3><ol> 앱이 타사 도우미 앱이고 InCallService API에 액세스하려는 경우 앱이 수행할 수 있는 작업은 다음과 같습니다.

<ol><li>는 API를 통해 android.companion.CompanionDeviceManager 물리적 웨어러블 디바이스와 연결된 매니페스트<의> MANAGE_ONGOING_CALLS 권한을 도우미 앱으로 선언합니다. 참조: https://developer.android.com/guide/topics/connectivity/companion-device-pairing<li> BIND_INCALL_SERVICE 권한 </ol/ol><을 사용하여 이 InCallService 구현>

</pre><p id="incomingCallNotification"><h3>수신 전화 알림</h3> 을 표시합니다. 앱이 새 수신 전화를 통해 InCallService#onCallAdded(Call)수신하면 들어오는 호출에 대한 수신 호출 UI를 표시해야 합니다. API를 사용하여 android.app.NotificationManager 새 수신 전화 알림을 게시하려면 이 작업을 수행해야 합니다.

앱이 메타 데이터를 TelecomManager#METADATA_IN_CALL_SERVICE_RINGING선언하는 경우 수신 호출에 대한 벨소리 재생을 담당합니다. 앱에서 android.app.NotificationChannel 원하는 벨소리를 지정하는 벨소리를 만들어야 합니다. 예시:

<code>
            NotificationChannel channel = new NotificationChannel(YOUR_CHANNEL_ID, "Incoming Calls",
                     NotificationManager.IMPORTANCE_MAX);
            // other channel setup stuff goes here.

            // We'll use the default system ringtone for our incoming call notification channel.  You can
            // use your own audio resource here.
            Uri ringtoneUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE);
            channel.setSound(ringtoneUri, new AudioAttributes.Builder()
                     // Setting the AudioAttributes is important as it identifies the purpose of your
                     // notification sound.
                     .setUsage(AudioAttributes.USAGE_NOTIFICATION_RINGTONE)
                     .setContentType(AudioAttributes.CONTENT_TYPE_SONIFICATION)
                 .build());

            NotificationManager mgr = getSystemService(NotificationManager.class);
            mgr.createNotificationChannel(channel);
</code>

앱이 새 수신 전화를 받으면 들어오는 통화에 대한 호출 android.app.Notification 을 만들고 들어오는 통화 알림 채널에 연결합니다. 전체 화면 수신 통화 UI를 시작하는 알림을 지정할 android.app.PendingIntent 수 있습니다. 알림 관리자 프레임워크는 사용자가 휴대폰을 적극적으로 사용하는 경우 알림을 헤드업 알림으로 표시합니다. 사용자가 전화를 사용하지 않는 경우 전체 화면 수신 통화 UI가 대신 사용됩니다. 예시:

<code>{@code
            // Create an intent which triggers your fullscreen incoming call user interface.
            Intent intent = new Intent(Intent.ACTION_MAIN, null);
            intent.setFlags(Intent.FLAG_ACTIVITY_NO_USER_ACTION | Intent.FLAG_ACTIVITY_NEW_TASK);
            intent.setClass(context, YourIncomingCallActivity.class);
            PendingIntent pendingIntent = PendingIntent.getActivity(context, 1, intent, PendingIntent.FLAG_MUTABLE_UNAUDITED);

            // Build the notification as an ongoing high priority item; this ensures it will show as
            // a heads up notification which slides down over top of the current content.
            final Notification.Builder builder = new Notification.Builder(context);
            builder.setOngoing(true);
            builder.setPriority(Notification.PRIORITY_HIGH);

            // Set notification content intent to take user to the fullscreen UI if user taps on the
            // notification body.
            builder.setContentIntent(pendingIntent);
            // Set full screen intent to trigger display of the fullscreen UI when the notification
            // manager deems it appropriate.
            builder.setFullScreenIntent(pendingIntent, true);

            // Setup notification content.
            builder.setSmallIcon( yourIconResourceId );
            builder.setContentTitle("Your notification title");
            builder.setContentText("Your notification content.");

            // Use builder.addAction(..) to add buttons to answer or reject the call.

            NotificationManager notificationManager = mContext.getSystemService(
                NotificationManager.class);
            notificationManager.notify(YOUR_CHANNEL_ID, YOUR_TAG, YOUR_ID, builder.build());
            }

에 대한 android.telecom.InCallServiceJava 설명서

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

생성자

InCallService()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

InCallService(IntPtr, JniHandleOwnership)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

필드

AccessibilityService

#getSystemService(String) 등록된 이벤트 수신기를 android.view.accessibility.AccessibilityManager 통해 UI 이벤트에 대한 사용자 피드백을 제공하는 데 사용합니다.

(다음에서 상속됨 Context)
AccountService

#getSystemService(String)android.accounts.AccountManager 선택한 시간에 의도 수신을 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
ActivityService

#getSystemService(String) 전역 시스템 상태와 상호 작용하기 android.app.ActivityManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
AlarmService

#getSystemService(String)android.app.AlarmManager 선택한 시간에 의도 수신을 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
AppOpsService

#getSystemService(String) 디바이스에서 애플리케이션 작업을 추적하기 android.app.AppOpsManager 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
AppSearchService

#getSystemService(String)android.app.appsearch.AppSearchManager 시스템에서 관리하는 앱 데이터를 인덱싱하고 쿼리하는 데 사용합니다.

(다음에서 상속됨 Context)
AppwidgetService

#getSystemService(String)android.appwidget.AppWidgetManager AppWidgets에 액세스하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
AudioService

#getSystemService(String)android.media.AudioManager 볼륨, 벨소리 모드 및 오디오 라우팅의 관리 처리를 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
BatteryService

#getSystemService(String) 배터리 상태를 관리하기 위해 검색 android.os.BatteryManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
BindAllowActivityStarts
사용되지 않음.

플래그 #bindService: 표시되는 앱에서 바인딩하는 경우 바인딩된 서비스는 백그라운드에서 활동을 시작할 수 있습니다.

(다음에서 상속됨 Context)
BindExternalServiceLong

와 같은 방식으로 #BIND_EXTERNAL_SERVICE작동하지만 (로 정의됨)

(다음에서 상속됨 Context)
BindNotPerceptible
사용되지 않음.

플래그 #bindService: 표시되거나 사용자가 인식할 수 있는 앱에서 바인딩하는 경우 대상 서비스의 중요도를 인식 가능한 수준 이하로 낮춥습니다.

(다음에서 상속됨 Context)
BindSharedIsolatedProcess
사용되지 않음.

플래그 #bindIsolatedService: 서비스를 공유 격리된 프로세스에 바인딩합니다.

(다음에서 상속됨 Context)
BiometricService

#getSystemService(String) 생체 인식 및 PIN/패턴/암호 인증 처리를 위해 검색 android.hardware.biometrics.BiometricManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
BlobStoreService

#getSystemService(String)android.app.blob.BlobStoreManager 시스템에서 유지 관리하는 Blob 저장소에서 데이터 Blob에 기여하고 액세스하는 데 사용할 수 있습니다.

(다음에서 상속됨 Context)
BluetoothService

#getSystemService(String) Bluetooth를 사용하여 검색하는 android.bluetooth.BluetoothManager 데 사용합니다.

(다음에서 상속됨 Context)
BugreportService

버그 보고서를 캡처하는 서비스입니다.

(다음에서 상속됨 Context)
CameraService

#getSystemService(String)android.hardware.camera2.CameraManager 함께 사용하여 카메라 디바이스와 상호 작용하기 위한 검색을 사용합니다.

(다음에서 상속됨 Context)
CaptioningService

#getSystemService(String)android.view.accessibility.CaptioningManager 캡션 속성을 가져오고 캡션 기본 설정의 변경 내용을 수신 대기하는 데 사용합니다.

(다음에서 상속됨 Context)
CarrierConfigService

함께 #getSystemService(String) 사용하여 이동 통신 사업자 구성 값을 읽는 android.telephony.CarrierConfigManager 데 사용합니다.

(다음에서 상속됨 Context)
ClipboardService

#getSystemService(String)android.content.ClipboardManager 전역 클립보드의 내용에 액세스하고 수정하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
CompanionDeviceService

도우미 #getSystemService(String) 디바이스를 관리하기 위한 검색 android.companion.CompanionDeviceManager 에 사용

(다음에서 상속됨 Context)
ConnectivityDiagnosticsService

#getSystemService(String)android.net.ConnectivityDiagnosticsManager 함께 사용하여 네트워크 연결 진단을 수행하고 시스템에서 네트워크 연결 정보를 수신하는 데 사용합니다.

(다음에서 상속됨 Context)
ConnectivityService

#getSystemService(String) 네트워크 연결 관리 처리를 위해 검색 android.net.ConnectivityManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
ConsumerIrService

#getSystemService(String)android.hardware.ConsumerIrManager 디바이스에서 적외선 신호를 전송하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
CredentialService

#getSystemService(String) 앱에 사용자를 인증하는 android.credentials.CredentialManager 데 사용할 수 있습니다.

(다음에서 상속됨 Context)
CrossProfileAppsService

#getSystemService(String) 함께 사용하여 프로필 간 작업을 검색 android.content.pm.CrossProfileApps 합니다.

(다음에서 상속됨 Context)
DeviceIdDefault

기본(가상이 아닌) 디바이스의 ID인 기본 디바이스 ID입니다.

(다음에서 상속됨 Context)
DeviceIdInvalid

디바이스 ID가 잘못되었습니다.

(다음에서 상속됨 Context)
DeviceLockService

#getSystemService(String) 검색하는 데 android.devicelock.DeviceLockManager사용합니다.

(다음에서 상속됨 Context)
DevicePolicyService

#getSystemService(String) 전역 디바이스 정책 관리 작업을 위해 검색 android.app.admin.DevicePolicyManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
DisplayHashService

#getSystemService(String) 함께 사용하여 표시 해시를 처리할 수 android.view.displayhash.DisplayHashManager 있습니다.

(다음에서 상속됨 Context)
DisplayService

디스플레이 디바이스와 #getSystemService(String) 상호 작용하기 android.hardware.display.DisplayManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
DomainVerificationService

#getSystemService(String) 함께 사용하여 android.content.pm.verify.domain.DomainVerificationManager 선언된 웹 도메인에 대한 승인 및 사용자 상태를 검색합니다.

(다음에서 상속됨 Context)
DownloadService

#getSystemService(String) HTTP 다운로드를 요청하는 데 android.app.DownloadManager 사용할 수 있습니다.

(다음에서 상속됨 Context)
DropboxService

#getSystemService(String) 진단 로그를 기록하는 인스턴스를 android.os.DropBoxManager 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
EuiccService

#getSystemService(String)android.telephony.euicc.EuiccManager 디바이스 eUICC(포함된 SIM)를 관리하는 데 사용합니다.

(다음에서 상속됨 Context)
FileIntegrityService

#getSystemService(String) 검색하는 데 android.security.FileIntegrityManager사용합니다.

(다음에서 상속됨 Context)
FingerprintService

#getSystemService(String)android.hardware.fingerprint.FingerprintManager 함께 사용하여 지문 관리 처리를 검색합니다.

(다음에서 상속됨 Context)
GameService

#getSystemService(String) 검색하는 데 GameManager사용합니다.

(다음에서 상속됨 Context)
GrammaticalInflectionService

#getSystemService(String) 검색하는 데 GrammaticalInflectionManager사용합니다.

(다음에서 상속됨 Context)
HardwarePropertiesService

#getSystemService(String) 하드웨어 속성 서비스에 액세스하기 android.os.HardwarePropertiesManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
HealthconnectService

#getSystemService(String) 검색하는 데 android.health.connect.HealthConnectManager사용합니다.

(다음에서 상속됨 Context)
InputMethodService

#getSystemService(String) 입력 메서드에 액세스하기 android.view.inputmethod.InputMethodManager 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
InputService

입력 디바이스와 #getSystemService(String) 상호 작용하기 android.hardware.input.InputManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
IpsecService

#getSystemService(String) 함께 사용하여 IPSec을 android.net.IpSecManager 사용하여 소켓 또는 네트워크를 암호화하는 데 사용합니다.

(다음에서 상속됨 Context)
JobSchedulerService

간헐적인 #getSystemService(String)android.app.job.JobScheduler 백그라운드 작업을 관리하기 위한 인스턴스를 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
KeyguardService

#getSystemService(String) 키 가드를 android.app.KeyguardManager 제어하기 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
LauncherAppsService

#getSystemService(String)android.content.pm.LauncherApps 사용자의 프로필에서 실행 가능한 앱을 쿼리하고 모니터링하는 데 사용합니다.

(다음에서 상속됨 Context)
LayoutInflaterService

#getSystemService(String) 이 컨텍스트에서 android.view.LayoutInflater 레이아웃 리소스를 확장하기 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
LocaleService

#getSystemService(String) 검색하는 데 android.app.LocaleManager사용합니다.

(다음에서 상속됨 Context)
LocationService

#getSystemService(String) 위치 업데이트를 제어하기 위해 검색 android.location.LocationManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
MediaCommunicationService

#getSystemService(String) 검색하는 데 사용합니다. android.media.MediaCommunicationManager를 관리합니다.android.media.MediaSession2

(다음에서 상속됨 Context)
MediaMetricsService

#getSystemService(String) 디바이스에서 android.media.metrics.MediaMetricsManager 미디어 메트릭과 상호 작용하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
MediaProjectionService

#getSystemService(String) 미디어 프로젝션 세션을 관리하기 위한 인스턴스를 검색 android.media.projection.MediaProjectionManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
MediaRouterService

#getSystemServiceandroid.media.MediaRouter 미디어 라우팅을 제어하고 관리하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
MediaSessionService

#getSystemService(String) 미디어 세션을 관리하기 위한 검색 android.media.session.MediaSessionManager 에 사용합니다.

(다음에서 상속됨 Context)
MidiService

#getSystemService(String) MIDI 서비스에 액세스하기 android.media.midi.MidiManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
NetworkStatsService

#getSystemService(String)android.app.usage.NetworkStatsManager 네트워크 사용 통계를 쿼리하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
NfcService

#getSystemService(String) NFC를 사용하여 검색하는 android.nfc.NfcManager 데 사용합니다.

(다음에서 상속됨 Context)
NotificationService

#getSystemService(String) 백그라운드 이벤트를 사용자에게 알리기 android.app.NotificationManager 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
NsdService

#getSystemService(String) 네트워크 서비스 검색의 관리 처리를 위해 검색 android.net.nsd.NsdManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
OverlayService

#getSystemService(String) 오버레이 패키지를 관리하기 android.content.om.OverlayManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
PeopleService

#getSystemService(String) 함께 사용하여 게시된 대화와 상호 작용하는 데 액세스 PeopleManager 합니다.

(다음에서 상속됨 Context)
PerformanceHintService

#getSystemService(String)android.os.PerformanceHintManager 성능 힌트 서비스에 액세스하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
PowerService

#getSystemService(String) 긴 작업을 실행하는 동안 디바이스를 android.os.PowerManager 계속 사용할 수 있는 "절전 모드 해제 잠금"을 포함하여 전원 관리를 제어하는 데 사용합니다.

(다음에서 상속됨 Context)
PrintService

android.print.PrintManager 프린터 및 인쇄 작업을 인쇄 및 관리합니다.

(다음에서 상속됨 Context)
ReceiverExported
사용되지 않음.

플래그 #registerReceiver: 수신기는 다른 앱에서 브로드캐스트를 받을 수 있습니다.

(다음에서 상속됨 Context)
ReceiverNotExported
사용되지 않음.

플래그 #registerReceiver: 수신기는 다른 앱에서 브로드캐스트를 받을 수 없습니다.

(다음에서 상속됨 Context)
ReceiverVisibleToInstantApps
사용되지 않음.

플래그 #registerReceiver: 수신기는 Instant Apps에서 브로드캐스트를 받을 수 있습니다.

(다음에서 상속됨 Context)
RestrictionsService

#getSystemService(String)android.content.RestrictionsManager 애플리케이션 제한을 검색하고 제한된 작업에 대한 사용 권한을 요청하는 데 사용합니다.

(다음에서 상속됨 Context)
RoleService

#getSystemService(String) 역할 관리를 위해 검색 android.app.role.RoleManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
SearchService

#getSystemService(String) 검색 처리를 위해 검색 android.app.SearchManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
SensorService

#getSystemService(String) 센서에 액세스하기 android.hardware.SensorManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
ServiceInterface

Intent 서비스에서 처리하는 것으로 선언해야 합니다.

ShortcutService

#getSystemService(String)android.content.pm.ShortcutManager 시작 관리자 바로 가기 서비스에 액세스하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
StatusBarService

#getSystemService(String) 상태 표시줄 및 빠른 설정과 상호 작용하기 위한 검색 android.app.StatusBarManager 에 사용합니다.

(다음에서 상속됨 Context)
StopForegroundDetach
사용되지 않음.

선택기 #stopForeground(int): 설정된 경우 이전에 제공된 #startForeground 알림이 서비스의 수명 주기에서 분리됩니다.

(다음에서 상속됨 Service)
StopForegroundLegacy

선택#stopForeground(int)기: 레거시 API#stopForeground(boolean)에 전달하는 false 것과 같습니다.

(다음에서 상속됨 Service)
StopForegroundRemove
사용되지 않음.

선택기 #stopForeground(int): 제공된 경우 이전에 제공된 #startForeground 알림이 취소되고 디스플레이에서 제거됩니다.

(다음에서 상속됨 Service)
StorageService

#getSystemService(String) 시스템 스토리지 함수에 android.os.storage.StorageManager 액세스하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
StorageStatsService

#getSystemService(String) 시스템 스토리지 통계에 액세스하기 android.app.usage.StorageStatsManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
SystemHealthService

#getSystemService(String) 시스템 상태(배터리, 전원, 메모리 등) 메트릭에 액세스하기 위한 검색 android.os.health.SystemHealthManager 에 사용합니다.

(다음에서 상속됨 Context)
TelecomService

#getSystemService(String) 함께 사용하여 디바이스의 android.telecom.TelecomManager 통신 관련 기능을 관리하는 데 사용합니다.

(다음에서 상속됨 Context)
TelephonyImsService

#getSystemService(String) 검색하는 데 android.telephony.ims.ImsManager사용합니다.

(다음에서 상속됨 Context)
TelephonyService

#getSystemService(String) 디바이스의 android.telephony.TelephonyManager 전화 통신 기능을 관리하기 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
TelephonySubscriptionService

#getSystemService(String) 디바이스의 android.telephony.SubscriptionManager 전화 통신 구독을 관리하기 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
TextClassificationService

#getSystemService(String) 텍스트 분류 서비스를 검색 TextClassificationManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
TextServicesManagerService

#getSystemService(String) 텍스트 서비스에 액세스하기 android.view.textservice.TextServicesManager 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
TvInputService

#getSystemService(String)android.media.tv.TvInputManager 장치에서 TV 입력과 상호 작용하는 데 사용할 수 있습니다.

(다음에서 상속됨 Context)
TvInteractiveAppService

#getSystemService(String) 디바이스에서 android.media.tv.interactive.TvInteractiveAppManager TV 대화형 애플리케이션과 상호 작용하는 데 사용할 수 있습니다.

(다음에서 상속됨 Context)
UiModeService

#getSystemService(String) UI 모드를 android.app.UiModeManager 제어하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
UsageStatsService

#getSystemService(String) 디바이스 사용 통계 쿼리를 android.app.usage.UsageStatsManager 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
UsbService

#getSystemService(String) USB 디바이스에 대한 액세스(USB 호스트)를 검색 android.hardware.usb.UsbManager 하고 USB 디바이스로 이 디바이스의 동작을 제어하는 데 사용합니다.

(다음에서 상속됨 Context)
UserService

#getSystemService(String) 여러 사용자를 지원하는 디바이스에서 사용자를 관리하기 위한 검색 android.os.UserManager 에 사용합니다.

(다음에서 상속됨 Context)
VibratorManagerService

#getSystemService(String) 디바이스 진동기 android.os.VibratorManager 액세스, 개별 진동기 조작 및 여러 진동기에서 동기화된 효과 재생을 위해 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
VibratorService

#getSystemService(String) 진동 하드웨어와 상호 작용하기 android.os.Vibrator 위한 검색에 사용합니다.

(다음에서 상속됨 Context)
VirtualDeviceService

#getSystemService(String) 가상 디바이스를 관리하기 위한 검색에 android.companion.virtual.VirtualDeviceManager 사용합니다.

(다음에서 상속됨 Context)
VpnManagementService

#getSystemService(String)android.net.VpnManager 플랫폼 기본 제공 VPN에 대한 프로필을 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
WallpaperService

com #getSystemService(String) 을 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
WifiAwareService

와 함께 #getSystemService(String)android.net.wifi.aware.WifiAwareManager Wi-Fi 인식의 관리 처리를 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
WifiP2pService

와 함께 #getSystemService(String)android.net.wifi.p2p.WifiP2pManager Wi-Fi 피어 투 피어 연결의 관리 처리를 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
WifiRttRangingService

와이 #getSystemService(String) 파이를 사용하여 다양한 디바이스를 android.net.wifi.rtt.WifiRttManager 검색하는 데 사용합니다.

(다음에서 상속됨 Context)
WifiService

#getSystemService(String) Wi-Fi 액세스의 관리 처리를 위해 검색 android.net.wifi.WifiManager 하는 데 사용합니다.

(다음에서 상속됨 Context)
WindowService

#getSystemService(String)android.view.WindowManager 시스템의 창 관리자에 액세스하기 위한 검색에 사용합니다.

(다음에서 상속됨 Context)

속성

Application

이 서비스를 소유하는 애플리케이션을 반환합니다.

(다음에서 상속됨 Service)
ApplicationContext

현재 프로세스의 단일 전역 Application 개체의 컨텍스트를 반환합니다.

(다음에서 상속됨 ContextWrapper)
ApplicationInfo

이 컨텍스트의 패키지에 대한 전체 애플리케이션 정보를 반환합니다.

(다음에서 상속됨 ContextWrapper)
Assets

애플리케이션 패키지에 대한 AssetManager 인스턴스를 반환합니다.

(다음에서 상속됨 ContextWrapper)
AttributionSource

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Context)
AttributionTag

특성은 복잡한 앱에서 앱의 일부를 논리적으로 구분하는 데 사용할 수 있습니다.

(다음에서 상속됨 Context)
BaseContext (다음에서 상속됨 ContextWrapper)
CacheDir

파일 시스템의 애플리케이션별 캐시 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
CallAudioState

현재 전화 통화 오디오 상태를 가져옵니다.

Calls

이 호출 중인 서비스에서 표시할 현재 목록을 Call가져옵니다.

Class

Object런타임 클래스를 반환합니다.

(다음에서 상속됨 Object)
ClassLoader

이 패키지에서 클래스를 검색하는 데 사용할 수 있는 클래스 로더를 반환합니다.

(다음에서 상속됨 ContextWrapper)
CodeCacheDir

캐시된 코드를 저장하도록 설계된 파일 시스템의 애플리케이션별 캐시 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
ContentResolver

애플리케이션 패키지에 대한 ContentResolver 인스턴스를 반환합니다.

(다음에서 상속됨 ContextWrapper)
CurrentCallEndpoint

현재 CallEndpoint를 가져옵니다.

DataDir

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
DeviceId

이 컨텍스트가 연결된 디바이스 ID를 가져옵니다.

(다음에서 상속됨 Context)
Display

이 컨텍스트가 연결된 표시를 가져옵니다.

(다음에서 상속됨 Context)
ExternalCacheDir

기본 외부 파일 시스템의 디렉터리에 대한 절대 경로를 반환합니다(애플리케이션이 소유한 캐시 파일을 배치할 수 있는 위치에 ExternalStorageDirectory 위치).

(다음에서 상속됨 ContextWrapper)
FilesDir

생성된 OpenFileOutput(String, FileCreationMode) 파일이 저장되는 파일 시스템의 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
ForegroundServiceType

서비스를 호출하여 포그라운드 서비스가 된 경우 #startForeground(int, Notification)#getForegroundServiceType() 또는 #startForeground(int, Notification, int)현재 포그라운드 서비스 유형을 반환합니다.

(다음에서 상속됨 Service)
Handle

기본 Android 인스턴스에 대한 핸들입니다.

(다음에서 상속됨 Object)
IsDeviceProtectedStorage

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
IsRestricted

이 컨텍스트가 제한되는지 여부를 나타냅니다.

(다음에서 상속됨 Context)
IsUiContext

컨텍스트가 UI 구성 요소(예: WindowManagerandroid.view.LayoutInflater LayoutInflaterandroid.app.WallpaperManager WallpaperManager또는 )에 액세스할 수 있는 UI 컨텍스트인지 여부를 반환 true 합니다.

(다음에서 상속됨 Context)
JniIdentityHashCode

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
JniPeerMembers

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

MainExecutor

Executor 이 컨텍스트와 연결된 주 스레드에서 큐에 추가된 작업을 실행하는 작업을 반환합니다.

(다음에서 상속됨 Context)
MainLooper

현재 프로세스의 주 스레드에 대한 Looper를 반환합니다.

(다음에서 상속됨 ContextWrapper)
NoBackupFilesDir

다음과 유사한 FilesDir파일 시스템의 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
ObbDir

이 애플리케이션의 OBB 파일(있는 경우)을 찾을 수 있는 기본 외부 스토리지 디렉터리를 반환합니다.

(다음에서 상속됨 ContextWrapper)
OpPackageName

앱 ops 관리자의 uid 확인이 이름과 함께 작동할 수 있도록 이 컨텍스트의 호출에 사용해야 android.app.AppOpsManager 하는 패키지 이름을 반환합니다.

(다음에서 상속됨 Context)
PackageCodePath

이 컨텍스트의 기본 Android 패키지에 대한 전체 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
PackageManager

PackageManager 인스턴스를 반환하여 전역 패키지 정보를 찾습니다.

(다음에서 상속됨 ContextWrapper)
PackageName

이 애플리케이션 패키지의 이름을 반환합니다.

(다음에서 상속됨 ContextWrapper)
PackageResourcePath

이 컨텍스트의 기본 Android 패키지에 대한 전체 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
Params

를 통해 #createContext(ContextParams)만든 경우 이 컨텍스트를 사용하여 만든 매개 변수 집합을 반환합니다.

(다음에서 상속됨 Context)
PeerReference

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
Resources

애플리케이션 패키지에 대한 Resources 인스턴스를 반환합니다.

(다음에서 상속됨 ContextWrapper)
Theme

이 컨텍스트와 연결된 Theme 개체를 반환합니다.

(다음에서 상속됨 ContextWrapper)
ThresholdClass

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

ThresholdType

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

Wallpaper (다음에서 상속됨 ContextWrapper)
WallpaperDesiredMinimumHeight (다음에서 상속됨 ContextWrapper)
WallpaperDesiredMinimumWidth (다음에서 상속됨 ContextWrapper)

메서드

AttachBaseContext(Context)

이 ContextWrapper에 대한 기본 컨텍스트를 설정합니다.

(다음에서 상속됨 ContextWrapper)
BindService(Intent, Bind, IExecutor, IServiceConnection)

#bindService(Intent, ServiceConnection, int) bindService(Intent, ServiceConnection, int) ServiceConnection 콜백을 제어하는 실행기에서와 동일합니다.

(다음에서 상속됨 Context)
BindService(Intent, Context+BindServiceFlags, IExecutor, IServiceConnection)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Context)
BindService(Intent, IServiceConnection, Bind)

애플리케이션 서비스에 연결하여 필요한 경우 만듭니다.

(다음에서 상속됨 ContextWrapper)
BindService(Intent, IServiceConnection, Context+BindServiceFlags)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Context)
BindServiceAsUser(Intent, IServiceConnection, Context+BindServiceFlags, UserHandle)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Context)
BindServiceAsUser(Intent, IServiceConnection, Int32, UserHandle)

와 같은 방식으로 #bindService지정된 user 서비스에 바인딩합니다.

(다음에서 상속됨 Context)
CanAddCall()

디바이스에서 추가 호출을 지원할 수 있는지를 반환합니다.

CheckCallingOrSelfPermission(String)

IPC 의 호출 프로세스 또는 사용자에게 특정 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 ContextWrapper)
CheckCallingOrSelfUriPermission(Uri, ActivityFlags)

IPC 의 호출 프로세스 또는 특정 URI에 액세스할 수 있는 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 ContextWrapper)
CheckCallingOrSelfUriPermissions(IList<Uri>, Int32)

IPC <em>또는 you</em> 의 호출 프로세스에 URI 목록에 액세스할 수 있는 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 Context)
CheckCallingPermission(String)

처리 중인 IPC의 호출 프로세스에 특정 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 ContextWrapper)
CheckCallingUriPermission(Uri, ActivityFlags)

호출 프로세스 및 사용자 ID에 특정 URI에 액세스할 수 있는 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 ContextWrapper)
CheckCallingUriPermissions(IList<Uri>, Int32)

호출 프로세스 및 사용자 ID에 URI 목록에 액세스할 수 있는 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 Context)
CheckPermission(String, Int32, Int32)

시스템에서 실행되는 특정 프로세스 및 사용자 ID에 대해 지정된 권한이 허용되는지 여부를 확인합니다.

(다음에서 상속됨 ContextWrapper)
CheckSelfPermission(String)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
CheckUriPermission(Uri, Int32, Int32, ActivityFlags)

특정 프로세스 및 사용자 ID에 특정 URI에 액세스할 수 있는 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 ContextWrapper)
CheckUriPermission(Uri, String, String, Int32, Int32, ActivityFlags)

URI 및 일반 사용 권한을 모두 확인합니다.

(다음에서 상속됨 ContextWrapper)
CheckUriPermissions(IList<Uri>, Int32, Int32, Int32)

특정 프로세스 및 사용자 ID에 URI 목록에 액세스할 수 있는 권한이 부여되었는지 여부를 확인합니다.

(다음에서 상속됨 Context)
ClearWallpaper()
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
Clone()

이 개체의 복사본을 만들고 반환합니다.

(다음에서 상속됨 Object)
CreateAttributionContext(String)

현재 Context에 대한 새 Context 개체를 반환하지만 특성은 다른 태그에 반환합니다.

(다음에서 상속됨 Context)
CreateConfigurationContext(Configuration)

현재 컨텍스트에 대한 새 Context 개체를 반환하지만 해당 리소스가 지정된 구성과 일치하도록 조정됩니다.

(다음에서 상속됨 ContextWrapper)
CreateContext(ContextParams)

특정 속성 및 동작을 사용하여 컨텍스트를 만듭니다.

(다음에서 상속됨 Context)
CreateContextForSplit(String)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
CreateDeviceContext(Int32)

현재 컨텍스트에서 새 Context 개체를 반환하지만 .deviceId

(다음에서 상속됨 Context)
CreateDeviceProtectedStorageContext()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
CreateDisplayContext(Display)

현재 Context에 대한 새 Context 개체를 반환하지만 해당 리소스가 지정된 Display의 메트릭과 일치하도록 조정됩니다.

(다음에서 상속됨 ContextWrapper)
CreatePackageContext(String, PackageContextFlags)

지정된 애플리케이션 이름에 대한 새 Context 개체를 반환합니다.

(다음에서 상속됨 ContextWrapper)
CreateWindowContext(Display, Int32, Bundle)

Context 지정된 Display창에 비 창android.app.Activity activity에 대한 a를 만듭니다.

(다음에서 상속됨 Context)
CreateWindowContext(Int32, Bundle)

비활성 창에 대한 컨텍스트를 만듭니다.

(다음에서 상속됨 Context)
DatabaseList()

이 컨텍스트의 애플리케이션 패키지와 연결된 프라이빗 데이터베이스의 이름을 지정하는 문자열 배열을 반환합니다.

(다음에서 상속됨 ContextWrapper)
DeleteDatabase(String)

이 컨텍스트의 애플리케이션 패키지와 연결된 기존 프라이빗 SQLiteDatabase를 삭제합니다.

(다음에서 상속됨 ContextWrapper)
DeleteFile(String)

이 컨텍스트의 애플리케이션 패키지와 연결된 지정된 프라이빗 파일을 삭제합니다.

(다음에서 상속됨 ContextWrapper)
DeleteSharedPreferences(String)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
Dispose()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
Dispose(Boolean)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
Dump(FileDescriptor, PrintWriter, String[])

서비스의 상태를 지정된 스트림에 인쇄합니다.

(다음에서 상속됨 Service)
EnforceCallingOrSelfPermission(String, String)

처리 중인 IPC의 호출 프로세스에 특정 권한이 SecurityException부여되지 않은 경우 .

(다음에서 상속됨 ContextWrapper)
EnforceCallingOrSelfUriPermission(Uri, ActivityFlags, String)

IPC 의 호출 프로세스 또는 특정 URI에 액세스할 수 있는 권한이 부여되지 않은 경우 throw SecurityException합니다.

(다음에서 상속됨 ContextWrapper)
EnforceCallingPermission(String, String)

처리 중인 IPC의 호출 프로세스에 특정 권한이 부여되지 않은 경우 을 throw합니다 SecurityException.

(다음에서 상속됨 ContextWrapper)
EnforceCallingUriPermission(Uri, ActivityFlags, String)

호출 프로세스 및 사용자 ID에 특정 URI에 액세스할 수 있는 권한이 부여되지 않은 경우 throw SecurityException합니다.

(다음에서 상속됨 ContextWrapper)
EnforcePermission(String, Int32, Int32, String)

시스템에서 SecurityException실행 중인 특정 프로세스 및 사용자 ID에 대해 지정된 권한이 허용되지 않는 경우 .

(다음에서 상속됨 ContextWrapper)
EnforceUriPermission(Uri, Int32, Int32, ActivityFlags, String)

특정 프로세스 및 사용자 ID에 특정 URI에 액세스할 수 있는 권한이 부여되지 않은 경우 throw SecurityException합니다.

(다음에서 상속됨 ContextWrapper)
EnforceUriPermission(Uri, String, String, Int32, Int32, ActivityFlags, String)

URI 및 일반 권한을 모두 적용합니다.

(다음에서 상속됨 ContextWrapper)
Equals(Object)

다른 개체가 이 개체와 "같음"인지 여부를 나타냅니다.

(다음에서 상속됨 Object)
FileList()

이 컨텍스트의 애플리케이션 패키지와 연결된 프라이빗 파일의 이름을 지정하는 문자열 배열을 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetColor(Int32)

특정 리소스 ID와 연결되고 현재 테마의 스타일이 지정된 색을 반환합니다.

(다음에서 상속됨 Context)
GetColorStateList(Int32)

특정 리소스 ID와 연결되고 현재 테마의 스타일이 지정된 색 상태 목록을 반환합니다.

(다음에서 상속됨 Context)
GetDatabasePath(String)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
GetDir(String, FileCreationMode)

필요한 경우 애플리케이션이 자체 사용자 지정 데이터 파일을 배치할 수 있는 새 디렉터리를 검색하여 만듭니다.

(다음에서 상속됨 ContextWrapper)
GetDrawable(Int32)

특정 리소스 ID와 연결되고 현재 테마에 대해 스타일이 지정된 그리기 가능한 개체를 반환합니다.

(다음에서 상속됨 Context)
GetExternalCacheDirs()

애플리케이션이 소유한 캐시 파일을 배치할 수 있는 모든 외부 스토리지 디바이스에서 애플리케이션별 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetExternalFilesDir(String)

애플리케이션이 소유한 영구 파일을 배치할 수 있는 기본 외부 파일 시스템의 디렉터리에 대한 ExternalStorageDirectory절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetExternalFilesDirs(String)

애플리케이션이 소유한 영구 파일을 배치할 수 있는 모든 외부 스토리지 디바이스에서 애플리케이션별 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetExternalMediaDirs()
사용되지 않음.

애플리케이션이 미디어 파일을 배치할 수 있는 모든 외부 스토리지 디바이스에서 애플리케이션별 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetFileStreamPath(String)

생성된 OpenFileOutput(String, FileCreationMode) 파일이 저장되는 파일 시스템의 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetHashCode()

개체에 대한 해시 코드 값을 반환합니다.

(다음에서 상속됨 Object)
GetObbDirs()

애플리케이션의 OBB 파일(있는 경우)을 찾을 수 있는 모든 외부 스토리지 디바이스의 애플리케이션별 디렉터리에 대한 절대 경로를 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetSharedPreferences(String, FileCreationMode)

기본 설정 파일 'name'의 내용을 검색하고 보관하여 해당 값을 검색하고 수정할 수 있는 SharedPreferences를 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetString(Int32)

애플리케이션 패키지의 기본 문자열 테이블에서 지역화된 문자열을 반환합니다.

(다음에서 상속됨 Context)
GetString(Int32, Object[])

애플리케이션 패키지의 기본 문자열 테이블에서 지역화된 문자열을 반환합니다.

(다음에서 상속됨 Context)
GetSystemService(Class)

클래스별로 시스템 수준 서비스에 핸들을 반환합니다.

(다음에서 상속됨 Context)
GetSystemService(String)

이름으로 시스템 수준 서비스에 핸들을 반환합니다.

(다음에서 상속됨 ContextWrapper)
GetSystemServiceName(Class)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
GetText(Int32)

애플리케이션의 패키지 기본 문자열 테이블에서 지역화된 스타일이 지정된 CharSequence를 반환합니다.

(다음에서 상속됨 Context)
GetTextFormatted(Int32)

애플리케이션의 패키지 기본 문자열 테이블에서 지역화된 스타일이 지정된 CharSequence를 반환합니다.

(다음에서 상속됨 Context)
GrantUriPermission(String, Uri, ActivityFlags)

해당 패키지에 Uri의 콘텐츠 공급자에 액세스할 수 있는 일반 권한이 있는지 여부에 관계없이 다른 패키지에 특정 Uri에 액세스할 수 있는 권한을 부여합니다.

(다음에서 상속됨 ContextWrapper)
JavaFinalize()

가비지 수집에서 개체에 대한 참조가 더 이상 없다고 판단할 때 개체의 가비지 수집기에서 호출됩니다.

(다음에서 상속됨 Object)
MoveDatabaseFrom(Context, String)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
MoveSharedPreferencesFrom(Context, String)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
Notify()

이 개체의 모니터에서 대기 중인 단일 스레드를 해제합니다.

(다음에서 상속됨 Object)
NotifyAll()

이 개체의 모니터에서 대기 중인 모든 스레드를 해제합니다.

(다음에서 상속됨 Object)
ObtainStyledAttributes(IAttributeSet, Int32[])

이 컨텍스트의 테마에서 스타일이 지정된 특성 정보를 검색합니다.

(다음에서 상속됨 Context)
ObtainStyledAttributes(IAttributeSet, Int32[], Int32, Int32)

이 컨텍스트의 테마에서 스타일이 지정된 특성 정보를 검색합니다.

(다음에서 상속됨 Context)
ObtainStyledAttributes(Int32, Int32[])

이 컨텍스트의 테마에서 스타일이 지정된 특성 정보를 검색합니다.

(다음에서 상속됨 Context)
ObtainStyledAttributes(Int32[])

이 컨텍스트의 테마에서 스타일이 지정된 특성 정보를 검색합니다.

(다음에서 상속됨 Context)
OnAvailableCallEndpointsChanged(IList<CallEndpoint>)

사용 가능한 CallEndpoint가 변경되면 호출됩니다.

OnBind(Intent)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

OnBringToForeground(Boolean)

호출 중인 화면을 포그라운드로 가져오기 위해 호출됩니다.

OnCallAdded(Call)

호출 중인 이 세션에 Call A가 추가되었을 때 호출합니다.

OnCallAudioStateChanged(CallAudioState)

오디오 상태가 변경되면 호출합니다.

OnCallEndpointChanged(CallEndpoint)

현재 CallEndpoint가 변경되면 호출됩니다.

OnCallRemoved(Call)

호출 중인 Call 이 세션에서 A가 제거되었을 때 호출됩니다.

OnCanAddCallChanged(Boolean)

더 많은 호출을 추가하는 기능이 변경되면 호출합니다.

OnConfigurationChanged(Configuration)

구성 요소가 실행되는 동안 디바이스 구성이 변경되면 시스템에서 호출됩니다.

(다음에서 상속됨 Service)
OnConnectionEvent(Call, String, Bundle)

하지 않는; 에서 발급한 ConnectionService연결 이벤트를 처리하려면 콜백을 구현합니다 android.telecom.Call.Callback#onConnectionEvent(Call, String, Bundle) .

OnCreate()

서비스를 처음 만들 때 시스템에서 호출합니다.

(다음에서 상속됨 Service)
OnDestroy()

더 이상 사용되지 않고 제거되고 있음을 서비스에 알리기 위해 시스템에서 호출합니다.

(다음에서 상속됨 Service)
OnLowMemory()

이는 전체 시스템이 메모리가 부족하고 적극적으로 실행 중인 프로세스가 메모리 사용량을 트리밍해야 할 때 호출됩니다.

(다음에서 상속됨 Service)
OnMuteStateChanged(Boolean)

음소거 상태가 변경되면 호출합니다.

OnRebind(Intent)

새 클라이언트가 서비스에 연결되었을 때 호출되며, 이전에 모든 클라이언트의 #onUnbind연결이 끊어졌음을 알립니다.

(다음에서 상속됨 Service)
OnSilenceRinger()

벨소리가 울리는 호출이 있는 경우 벨소리를 묵음하기 위해 호출됩니다.

OnStart(Intent, Int32)
사용되지 않음.

이 멤버는 더 이상 사용되지 않습니다.

(다음에서 상속됨 Service)
OnStartCommand(Intent, StartCommandFlags, Int32)

클라이언트가 명시적으로 서비스를 호출하여 서비스를 시작할 때마다 시스템에서 호출 android.content.Context#startService되며, 제공된 인수와 시작 요청을 나타내는 고유 정수 토큰을 제공합니다.

(다음에서 상속됨 Service)
OnTaskRemoved(Intent)

이는 서비스가 현재 실행 중이고 사용자가 서비스의 애플리케이션에서 가져온 작업을 제거한 경우 호출됩니다.

(다음에서 상속됨 Service)
OnTimeout(Int32)

콜백은 에 대한 시간 제한 시 호출됩니다 ServiceInfo#FOREGROUND_SERVICE_TYPE_SHORT_SERVICE.

(다음에서 상속됨 Service)
OnTrimMemory(TrimMemory)

운영 체제가 프로세스에서 불필요한 메모리를 자르는 것이 좋은 시기라고 판단했을 때 호출됩니다.

(다음에서 상속됨 Service)
OnUnbind(Intent)

모든 클라이언트가 서비스에서 게시한 특정 인터페이스와 연결이 끊어지면 호출됩니다.

(다음에서 상속됨 Service)
OpenFileInput(String)

읽기 위해 이 컨텍스트의 애플리케이션 패키지와 연결된 프라이빗 파일을 엽니다.

(다음에서 상속됨 ContextWrapper)
OpenFileOutput(String, FileCreationMode)

쓰기를 위해 이 컨텍스트의 애플리케이션 패키지와 연결된 프라이빗 파일을 엽니다.

(다음에서 상속됨 ContextWrapper)
OpenOrCreateDatabase(String, FileCreationMode, SQLiteDatabase+ICursorFactory)

이 컨텍스트의 애플리케이션 패키지와 연결된 새 프라이빗 SQLiteDatabase를 엽니다.

(다음에서 상속됨 ContextWrapper)
OpenOrCreateDatabase(String, FileCreationMode, SQLiteDatabase+ICursorFactory, IDatabaseErrorHandler)

이 컨텍스트의 애플리케이션 패키지와 연결된 새 프라이빗 SQLiteDatabase를 엽니다.

(다음에서 상속됨 ContextWrapper)
PeekWallpaper()
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
RegisterComponentCallbacks(IComponentCallbacks)

작업 및 기타 구성 요소의 ComponentCallbacks 메서드가 호출되는 동시에 호출되는 컨텍스트의 기본 애플리케이션에 새 ComponentCallbacks 항목을 추가합니다.

(다음에서 상속됨 Context)
RegisterDeviceIdChangeListener(IExecutor, IIntConsumer)

시스템에 의해 디바이스 연결이 변경될 때 호출되는 새 디바이스 ID 변경 수신기 Context를 추가합니다.

(다음에서 상속됨 Context)
RegisterReceiver(BroadcastReceiver, IntentFilter)

Main 작업 스레드에서 실행할 BroadcastReceiver를 등록합니다.

(다음에서 상속됨 ContextWrapper)
RegisterReceiver(BroadcastReceiver, IntentFilter, ActivityFlags)
사용되지 않음.

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
RegisterReceiver(BroadcastReceiver, IntentFilter, ReceiverFlags)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Context)
RegisterReceiver(BroadcastReceiver, IntentFilter, String, Handler)

스케줄러의 컨텍스트에서 실행되도록 의도 브로드캐스트를 수신하도록 등록합니다.

(다음에서 상속됨 ContextWrapper)
RegisterReceiver(BroadcastReceiver, IntentFilter, String, Handler, ActivityFlags)
사용되지 않음.

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
RegisterReceiver(BroadcastReceiver, IntentFilter, String, Handler, ReceiverFlags)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Context)
RemoveStickyBroadcast(Intent)
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
RemoveStickyBroadcastAsUser(Intent, UserHandle)
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
RequestBluetoothAudio(BluetoothDevice)

특정 Bluetooth 디바이스에 대한 오디오 라우팅을 요청합니다.

RequestCallEndpointChange(CallEndpoint, IExecutor, IOutcomeReceiver)

특정 CallEndpoint에 대한 오디오 라우팅을 요청합니다.

RevokeSelfPermissionOnKill(String)

런타임 권한의 비동기 해지를 트리거합니다.

(다음에서 상속됨 Context)
RevokeSelfPermissionsOnKill(ICollection<String>)

호출 패키지에 대한 하나 이상의 사용 권한의 해지를 트리거합니다.

(다음에서 상속됨 Context)
RevokeUriPermission(String, Uri, ActivityFlags)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
RevokeUriPermission(Uri, ActivityFlags)

M:Android.Content.Context.GrantUriPermission(System.String,Android.Net.Uri,Android.Net.Uri)을 사용하여 이전에 추가된 특정 콘텐츠 공급자 Uri에 액세스할 수 있는 모든 권한을 제거합니다.

(다음에서 상속됨 ContextWrapper)
SendBroadcast(Intent)

지정된 의도를 모든 관심 있는 BroadcastReceivers에 브로드캐스트합니다.

(다음에서 상속됨 ContextWrapper)
SendBroadcast(Intent, String)

지정된 의도를 모든 관심 있는 BroadcastReceivers에 브로드캐스트하여 선택적 필수 권한을 적용할 수 있도록 합니다.

(다음에서 상속됨 ContextWrapper)
SendBroadcast(Intent, String, Bundle)

지정된 의도를 모든 관심 있는 BroadcastReceivers에 브로드캐스트하여 선택적 필수 권한을 적용할 수 있도록 합니다.

(다음에서 상속됨 Context)
SendBroadcastAsUser(Intent, UserHandle)

이 버전을 SendBroadcast(Intent) 사용하면 브로드캐스트가 전송될 사용자를 지정할 수 있습니다.

(다음에서 상속됨 ContextWrapper)
SendBroadcastAsUser(Intent, UserHandle, String)

이 버전을 SendBroadcast(Intent, String) 사용하면 브로드캐스트가 전송될 사용자를 지정할 수 있습니다.

(다음에서 상속됨 ContextWrapper)
SendBroadcastWithMultiplePermissions(Intent, String[])

지정된 의도를 모든 관심 있는 BroadcastReceivers에 브로드캐스트하여 필요한 권한 배열을 적용할 수 있도록 합니다.

(다음에서 상속됨 Context)
SendOrderedBroadcast(Intent, Int32, String, String, BroadcastReceiver, Handler, String, Bundle, Bundle)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
SendOrderedBroadcast(Intent, String)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
SendOrderedBroadcast(Intent, String, BroadcastReceiver, Handler, Result, String, Bundle)

이 버전을 SendBroadcast(Intent) 사용하면 브로드캐스트에서 데이터를 다시 받을 수 있습니다.

(다음에서 상속됨 ContextWrapper)
SendOrderedBroadcast(Intent, String, Bundle)

모든 관심있는 BroadcastReceivers에 지정된 의도를 브로드캐스트하여 선호하는 수신기가 덜 선호하는 수신기에 전달되기 전에 브로드캐스트를 사용할 수 있도록 한 번에 하나씩 전달합니다.

(다음에서 상속됨 Context)
SendOrderedBroadcast(Intent, String, Bundle, BroadcastReceiver, Handler, Result, String, Bundle)

이 버전을 #sendBroadcast(Intent) 사용하면 브로드캐스트에서 데이터를 다시 받을 수 있습니다.

(다음에서 상속됨 Context)
SendOrderedBroadcast(Intent, String, String, BroadcastReceiver, Handler, Result, String, Bundle)

이 버전을 #sendOrderedBroadcast(Intent, String, BroadcastReceiver, Handler, int, String, Bundle) 사용하면 브로드캐스트가 전송될 수신기에 대한 제한을 적용하도록 App Op을 지정할 수 있습니다.

(다음에서 상속됨 Context)
SendOrderedBroadcastAsUser(Intent, UserHandle, String, BroadcastReceiver, Handler, Result, String, Bundle)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
SendStickyBroadcast(Intent)
사용되지 않음.

#sendBroadcast(Intent) 브로드캐스트가 완료된 후 보내는 의도가 유지되므로 다른 사용자가 반환 값을 #registerReceiver(BroadcastReceiver, IntentFilter)통해 해당 데이터를 신속하게 검색할 수 있도록 "고정"을 수행합니다.

(다음에서 상속됨 ContextWrapper)
SendStickyBroadcast(Intent, Bundle)

#sendBroadcast(Intent) 브로드캐스트가 완료된 후 보내는 의도가 유지되므로 다른 사용자가 반환 값을 #registerReceiver(BroadcastReceiver, IntentFilter)통해 해당 데이터를 신속하게 검색할 수 있도록 "고정"을 수행합니다.

(다음에서 상속됨 Context)
SendStickyBroadcastAsUser(Intent, UserHandle)
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
SendStickyOrderedBroadcast(Intent, BroadcastReceiver, Handler, Result, String, Bundle)
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
SendStickyOrderedBroadcastAsUser(Intent, UserHandle, BroadcastReceiver, Handler, Result, String, Bundle)
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
SetAudioRoute(CallAudioRoute)

오디오 경로(스피커, 블루투스 등)를 설정합니다.

SetAudioRoute(VideoQuality)
사용되지 않음.

오디오 경로(스피커, 블루투스 등)를 설정합니다.

SetForeground(Boolean)

이 멤버는 더 이상 사용되지 않습니다.

(다음에서 상속됨 Service)
SetHandle(IntPtr, JniHandleOwnership)

Handle 속성을 설정합니다.

(다음에서 상속됨 Object)
SetMuted(Boolean)

마이크 음소거 상태를 설정합니다.

SetTheme(Int32)

이 컨텍스트의 기본 테마를 설정합니다.

(다음에서 상속됨 ContextWrapper)
SetWallpaper(Bitmap)
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
SetWallpaper(Stream)
사용되지 않음.
(다음에서 상속됨 ContextWrapper)
StartActivities(Intent[])

옵션이 지정되지 않은 경우 StartActivities(Intent[], Bundle) 와 동일합니다.

(다음에서 상속됨 ContextWrapper)
StartActivities(Intent[], Bundle)

여러 새 활동을 시작합니다.

(다음에서 상속됨 ContextWrapper)
StartActivity(Intent)

옵션이 지정되지 않은 경우 StartActivity(Intent, Bundle) 와 동일합니다.

(다음에서 상속됨 ContextWrapper)
StartActivity(Intent, Bundle)

새 활동을 시작합니다.

(다음에서 상속됨 ContextWrapper)
StartActivity(Type)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Context)
StartForeground(Int32, Notification)

서비스가 시작된 경우(실행 Context#startService(Intent)중) 이 서비스를 포그라운드에서 실행하여 이 상태인 동안 사용자에게 표시할 지속적인 알림을 제공합니다.

(다음에서 상속됨 Service)
StartForeground(Int32, Notification, ForegroundService)

추가 foregroundServiceType 매개 변수가 있는 오버로드된 버전 #startForeground(int, Notification) 입니다.

(다음에서 상속됨 Service)
StartForegroundService(Intent)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
StartInstrumentation(ComponentName, String, Bundle)

클래스 실행을 시작합니다 Instrumentation .

(다음에서 상속됨 ContextWrapper)
StartIntentSender(IntentSender, Intent, ActivityFlags, ActivityFlags, Int32)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 ContextWrapper)
StartIntentSender(IntentSender, Intent, ActivityFlags, ActivityFlags, Int32, Bundle)

처럼 StartActivity(Intent, Bundle), 하지만 시작 하는 IntentSender를 복용.

(다음에서 상속됨 ContextWrapper)
StartService(Intent)

지정된 애플리케이션 서비스를 시작하라는 요청입니다.

(다음에서 상속됨 ContextWrapper)
StopForeground(Boolean)

레거시 버전의 #stopForeground(int).

(다음에서 상속됨 Service)
StopForeground(StopForegroundFlags)

더 많은 메모리가 필요한 경우 이 서비스를 포그라운드 상태에서 제거하여 종료할 수 있습니다.

(다음에서 상속됨 Service)
StopSelf()

서비스가 이전에 시작된 경우 중지합니다.

(다음에서 상속됨 Service)
StopSelf(Int32)

이전 버전은 #stopSelfResult 결과를 반환하지 않습니다.

(다음에서 상속됨 Service)
StopSelfResult(Int32)

가장 최근에 시작된 시간이 var>startId</var>인 <경우 서비스를 중지합니다.

(다음에서 상속됨 Service)
StopService(Intent)

지정된 애플리케이션 서비스를 중지할 것을 요청합니다.

(다음에서 상속됨 ContextWrapper)
ToArray<T>()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
ToString()

개체의 문자열 표현을 반환합니다.

(다음에서 상속됨 Object)
UnbindService(IServiceConnection)

애플리케이션 서비스에서 연결을 끊습니다.

(다음에서 상속됨 ContextWrapper)
UnregisterComponentCallbacks(IComponentCallbacks)

이전에 #registerComponentCallbacks(ComponentCallbacks)등록한 개체를 ComponentCallbacks 제거합니다.

(다음에서 상속됨 Context)
UnregisterDeviceIdChangeListener(IIntConsumer)

컨텍스트에서 변경된 디바이스 ID 수신기를 제거합니다.

(다음에서 상속됨 Context)
UnregisterFromRuntime()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
UnregisterReceiver(BroadcastReceiver)

이전에 등록된 BroadcastReceiver 등록을 취소합니다.

(다음에서 상속됨 ContextWrapper)
UpdateServiceGroup(IServiceConnection, Int32, Int32)

이전에 바인딩된 #bindService 서비스 또는 관련 메서드의 경우 시스템이 다른 프로세스와 관련하여 해당 서비스의 프로세스를 관리하는 방법을 변경합니다.

(다음에서 상속됨 Context)
Wait()

현재 스레드가 각성될 때까지 대기하게 하며, 일반적으로 <알림을 받<>거나 <><중단/종료>합니다.>

(다음에서 상속됨 Object)
Wait(Int64)

현재 스레드가 각성될 때까지 대기하게 하며, 일반적으로 <>알림을 받<거나 <중단/>종료><>하거나 일정량의 실시간 경과가 발생할 때까지 대기합니다.

(다음에서 상속됨 Object)
Wait(Int64, Int32)

현재 스레드가 각성될 때까지 대기하게 하며, 일반적으로 <>알림을 받<거나 <중단/>종료><>하거나 일정량의 실시간 경과가 발생할 때까지 대기합니다.

(다음에서 상속됨 Object)

명시적 인터페이스 구현

IJavaPeerable.Disposed()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
IJavaPeerable.DisposeUnlessReferenced()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
IJavaPeerable.Finalized()

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
IJavaPeerable.JniManagedPeerState

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
IJavaPeerable.SetJniIdentityHashCode(Int32)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)
IJavaPeerable.SetPeerReference(JniObjectReference)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

(다음에서 상속됨 Object)

확장 메서드

JavaCast<TResult>(IJavaObject)

Android 런타임 확인 형식 변환을 수행합니다.

JavaCast<TResult>(IJavaObject)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

GetJniTypeName(IJavaPeerable)

이 서비스는 전화 통화를 관리하기 위한 기능을 제공하려는 앱에 의해 구현됩니다.

적용 대상