I have looked everywhere for this and I couldn't find any answer.
I am sending data over an intent like this.
MainActivity.java
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
intent.putExtra("key",Paint.Cap.SQUARE);
startActivity(intent);
My issue is in retrieving it, I don't know which get method to use and I couldn't find any source online that tells me.
SecondActivity.java
Bundle extras = getIntent().getExtras();
if(extras !=null)
{
if(extras.containsKey("key"))
{
Paint.Cap shape = //which method to use here?
}
}
If it's something so silly please tell me, I am still a beginner and tried my best to find it on my own.
Thanks.