[Solved] The best way to use variables in another activity [closed]
[ad_1] 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. [ad_2] solved The best way to use variables in another activity … Read more