私は2つのオブジェクトを持っています
obj.targetWeight = targetWeight.getText().toString();
obj.currentWeight = currentWeight.getText().toString();
私は一方から他方を引きたい。
私は運がないのでこれを試しました。
if (obj != null){
outputEditText.setText("Your target weight is " + obj.targetWeight +
"\n Your current weight is " + obj.currentWeight + "\n"
+ (obj.currentWeight - obj.targetWeight));
}
これはすべきことではないと確信していますが、その方法がわかりません。