[Solved] want to pass data from one intent to 2nd and after dat pass into 3rd intent.1st to 2nd has been done bt 2nd to 3rd intent didnt work [closed]


Don;t use:

CLIENT_USER_IDnew = Integer.parseInt(getIntent().getStringExtra("CLIENT_USER_ID"));

Use:

CLIENT_USER_IDnew = getIntent().getIntExtra("CLIENT_USER_ID"),0);

0

solved want to pass data from one intent to 2nd and after dat pass into 3rd intent.1st to 2nd has been done bt 2nd to 3rd intent didnt work [closed]