Skip to content

Instantly share code, notes, and snippets.

@theblang
Created February 13, 2015 16:06
Show Gist options
  • Save theblang/48d2d54f671d5996aec5 to your computer and use it in GitHub Desktop.
Save theblang/48d2d54f671d5996aec5 to your computer and use it in GitHub Desktop.
toast on app start
public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
Toast.makeText(getApplicationContext(), "Hello World", Toast.LENGTH_SHORT).show();
}
}
then in manifest
<application
android:name=".MyApplication"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment