Is it possible to check how much intent extras is coming from Activity? for example:
Intent intent = getIntent();
float i = intent.getFloatExtra("calculated", calculated);
float j = intent.getFloatExtra("calculated2", calculated2);
r1.setText(String.valueOf(i));
r2.setText(String.valueOf(j));
I know two extras are sending from one activity, can I use if else statements to check if there are more than 2 intent extras are coming to the new activity?