Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created November 4, 2010 19:47
Show Gist options
  • Save mgroves/663064 to your computer and use it in GitHub Desktop.
Save mgroves/663064 to your computer and use it in GitHub Desktop.
private void listView_ItemClick(object sender, ItemEventArgs e)
{
var intent = new Intent();
intent.SetClassName(this, PortfolioActivity.ClassName);
intent.PutExtra(PortfolioActivity.Extra_PortfolioID, _portfolios[e.Position].ID ?? -1);
StartActivityForResult(intent, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment