Skip to content

Instantly share code, notes, and snippets.

@yanguango
Created May 14, 2011 04:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save yanguango/971920 to your computer and use it in GitHub Desktop.
Save yanguango/971920 to your computer and use it in GitHub Desktop.
<application android:icon="@drawable/icon" android:label="@string/app_name" android:name="MyApplication">
public class MyApplication extends Application {
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
public void onLowMemory() {
super.onLowMemory();
}
@Override
public void onTerminate() {
super.onTerminate();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment