com.android.sdklib.repository
Interface ISdkChangeListener


public interface ISdkChangeListener

Interface for listeners on SDK modifications by the SDK Manager UI. This notifies when the SDK manager is first loading the SDK or before/after it installed a package.


Method Summary
 void onSdkLoaded()
          Invoked when the content of the SDK is being loaded by the SDK Manager UI for the first time.
 void onSdkReload()
          Invoked when the content of the SDK is being reloaded by the SDK Manager UI, typically after a package was installed.
 void postInstallHook()
          Invoked when the SDK Manager UI is done installing packages.
 void preInstallHook()
          Invoked when the SDK Manager UI is about to start installing packages.
 

Method Detail

onSdkLoaded

void onSdkLoaded()
Invoked when the content of the SDK is being loaded by the SDK Manager UI for the first time. This is generally followed by a call to onSdkReload() or by a call to preInstallHook().


preInstallHook

void preInstallHook()
Invoked when the SDK Manager UI is about to start installing packages. This will be followed by a call to postInstallHook().


postInstallHook

void postInstallHook()
Invoked when the SDK Manager UI is done installing packages. Some new packages might have been installed or the user might have cancelled the operation. This is generally followed by a call to onSdkReload().


onSdkReload

void onSdkReload()
Invoked when the content of the SDK is being reloaded by the SDK Manager UI, typically after a package was installed. The SDK content might or might not have changed.