Still working on my skills in android.
My problem here is that i have a label from my database that contain a name that is in a spinner, when i click on the label, a
You have to pass the information as extras.
Passing the Information
Intent i = new Intent();
i.setClassName("com.example", "com.example.activity");
i.putExtra("identifier", VALUE);
startActivity(i);
Getting the Information
Bundle extras = getIntent().getExtras();
String exampleString = extras.getString("identifier");