我有2個片段,AccountFragment和ActivityFragment。我目前在ActivityFragment中有一個公共方法,用於計算行走時燃燒的卡路里,然後將此值保存到名爲「outputCalories」的變量引用另一個片段的變量
我想在我的AccountFragment中引用此變量並向用戶顯示卡路里消耗的快速概覽。我已經有一個TextView,並且寫了一行顯示outputCalories的值。
caloriesText.setText(outputCalories + "Kcal/s");
caloriesText = (TextView) rootView.findViewById(R.id.textviewCalories);
如何從AccountFragment的onCreate方法內部引用變量?
「靜態」變量不是最佳實踐。 – MohammedAlSafwan