我在android studio中制作应用/游戏。我在我的应用程序/游戏中有超过10个活动,我有f.eks“int HP”我想与其他活动分享。
答案 0 :(得分:1)
Follwing方式:
Intent intent = new Intent(Activity1.this,Activity2.class)
intent.putExtra("message", message);
startActivity(intent);
了解更多信息请点击此链接
http://javatechig.com/android/pass-a-data-from-one-activity-to-another-in-android