Skip to content

Instantly share code, notes, and snippets.

@varis
varis / Display a Toast.java
Created August 9, 2011 19:37
Android / General
Toast.makeText(this, "Put your message here", Toast.LENGTH_SHORT).show();
@varis
varis / Activity Manager.java
Created August 5, 2011 23:51
Android / System Services
// AndroidManifest.xml must have the following permission:
// <uses-permission android:name="android.permission.GET_TASKS"/>
ActivityManager activityManager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);