Skip to content

Instantly share code, notes, and snippets.

@robhinds
Created March 19, 2013 21:01
Show Gist options
  • Save robhinds/5200099 to your computer and use it in GitHub Desktop.
Save robhinds/5200099 to your computer and use it in GitHub Desktop.
ListFragment on create
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
refreshList();
}
private void refreshList(){
rssService = new RssService(this);
rssService.execute(BLOG_URL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment