Skip to content

Instantly share code, notes, and snippets.

@smaspe
Created August 6, 2013 14:57
Show Gist options
  • Save smaspe/6165228 to your computer and use it in GitHub Desktop.
Save smaspe/6165228 to your computer and use it in GitHub Desktop.
private static final String SNAPR_URL = "http://sna.pr/api/search/";
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1);
setListAdapter(adapter);
new Downloader(adapter).execute(SNAPR_URL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment