When I click on a button, I send it to execute an activity where I show a layout, but when I try to execute it, I get the error:
Java.Lang.ClassNotFoundException: md5f22d74140d7efc8f033f3e312f703c5e.NombreActivity
This is the part where I send the Activity call:
private void BtnActivity_Click(object sender, EventArgs e)
{
var intent = new Intent(this, typeof(NombreActivity));
StartActivity(intent);
OnStop();
}
But I get error right in the var intent. Any suggestions?