[Solved] The best way to use variables in another activity [closed]


If you start a new activity u can send data with an intent. For example:

Intent intent = new Intent(this, newActivity.class); 
intent.putExtra(KEY, data);

If the data is custom object this class must extends from Parcelable so it could be send with an Intent.

solved The best way to use variables in another activity [closed]