Skip to content

Instantly share code, notes, and snippets.

@lxdvs
Created May 21, 2013 17:52
Show Gist options
  • Save lxdvs/5621798 to your computer and use it in GitHub Desktop.
Save lxdvs/5621798 to your computer and use it in GitHub Desktop.
public void onListingInfoPanelClick(View view) {
Intent dynamicIntent;
try {
dynamicIntent = new Intent(this, Class.forName("PropertyDetailsActivity"));
dynamicIntent.putExtra("listing", listing);
startActivity(dynamicIntent);
} catch (ClassNotFoundException e) {
// Broken world
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment