Available Methods
- PERMISSION_GRANTED
- NameNotFoundException ( )
- getPackageInfo ( )
- PERMISSION_DENIED
- queryIntentActivities ( )
- getApplicationInfo ( )
- getInstalledPackages ( )
- hasSystemFeature ( )
- getApplicationLabel ( )
- resolveActivity ( )
- setComponentEnabledSetting ( )
- getLaunchIntentForPackage ( )
- getPackageArchiveInfo ( )
- getResourcesForApplication ( )
- getInstalledApplications ( )
- COMPONENT_ENABLED_STATE_DISABLED
- queryIntentServices ( )
- checkPermission ( )
- COMPONENT_ENABLED_STATE_ENABLED
- COMPONENT_ENABLED_STATE_DEFAULT
- resolveService ( )
- getActivityInfo ( )
- getComponentEnabledSetting ( )
- getPackagesForUid ( )
- MATCH_DEFAULT_ONLY
- queryBroadcastReceivers ( )
- getApplicationIcon ( )
- getProviderInfo ( )
- GET_UNINSTALLED_PACKAGES
- getDrawable ( )
- resolveContentProvider ( )
- GET_SIGNATURES
- COMPONENT_ENABLED_STATE_DISABLED_UNTIL_USED
- getServiceInfo ( )
- checkSignatures ( )
- COMPONENT_ENABLED_STATE_DISABLED_USER
- getInstallerPackageName ( )
- SIGNATURE_MATCH
- MATCH_UNINSTALLED_PACKAGES
- FLAG_PERMISSION_SYSTEM_FIXED
- FLAG_PERMISSION_POLICY_FIXED
- GET_DISABLED_COMPONENTS
- GET_ACTIVITIES
- getApplicationEnabledSetting ( )
- getReceiverInfo ( )
- GET_RECEIVERS
- getAllPermissionGroups ( )
- queryPermissionsByGroup ( )
- getPermissionInfo ( )
- CertificateInputType ( )
- GET_PROVIDERS
- FEATURE_USB_ACCESSORY
- MoveCallback ( )
- getResourcesForActivity ( )
- FLAG_PERMISSION_REVIEW_REQUIRED
- GET_INSTRUMENTATION
- getPreferredActivities ( )
- INSTALL_INSTANT_APP
- INSTALL_FORWARD_LOCK
- getText ( )
- getPermissionGroupInfo ( )
- getActivityIcon ( )
- getNameForUid ( )
- GET_PERMISSIONS
- INSTALL_SUCCEEDED
- GET_RESOLVED_FILTER
- getSystemAvailableFeatures ( )
Related Classes
- java.util.Arrays
- java.io.File
- java.util.Collections
- android.os.Bundle
- android.content.Context
- android.view.View
- android.util.Log
- android.widget.TextView
- android.content.Intent
- android.view.ViewGroup
- android.app.Activity
- java.util.Locale
- android.view.LayoutInflater
- android.os.Build
- android.widget.Toast
- android.widget.ImageView
- android.os.Handler
- android.net.Uri
- android.graphics.Bitmap
- android.text.TextUtils
- android.graphics.drawable.Drawable
- android.content.SharedPreferences
- android.support.annotation.NonNull
- android.annotation.TargetApi
- android.annotation.SuppressLint
Java Code Examples for android.content.pm.PackageManager#MoveCallback
The following examples show how to use
android.content.pm.PackageManager#MoveCallback .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PackageManagerWrapper.java From MiPushFramework with GNU General Public License v3.0 | 4 votes |
/** @hide */ @Override public void registerMoveCallback(PackageManager.MoveCallback callback, Handler handler) { mBase.registerMoveCallback(callback, handler); }
Example 2
Source File: PackageManagerWrapper.java From MiPushFramework with GNU General Public License v3.0 | 4 votes |
/** @hide */ @Override public void unregisterMoveCallback(PackageManager.MoveCallback callback) { mBase.unregisterMoveCallback(callback); }