I have a activity where I have some data from previous activity:
final int pictureId = intent.getIntExtra("my.picture.id",0);
final String headerId = intent.getStringExtra("my.header.id");
final String bodyId = intent.getStringExtra("my.body.id");
In this activity I have private class where I want to get this data like pictureId etc., but I don’t know how. How I can get this data in my class.
In your Privtate Class’s constructor add a parameter.
Your Private Class will look like this.