android get intent data code example
Example 1: activity get extras
String id = intent.getStringExtra("id");
String name = intent.getStringExtra("name");
Example 2: get requestcode from intent android
getIntent().getAction();
Example 3: activity get extras
Intent intent = getIntent();