Skip to content

Instantly share code, notes, and snippets.

@vkoppaka
Created July 29, 2015 04:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vkoppaka/bd9cfe6a9f09d77ec67b to your computer and use it in GitHub Desktop.
Save vkoppaka/bd9cfe6a9f09d77ec67b to your computer and use it in GitHub Desktop.
Details Activity
using Android.App;
using Android.OS;
namespace IntentsSamples
{
[Activity(Label = "DetailsActivity")]
public class DetailsActivity : Activity
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
SetContentView(Resource.Layout.Details);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment