以下の関数は、sharedpreferences から 2 つの値、体重と身長を取得し、これらを使用して BMI を計算します。値の内容を出力すると、sharedprefs に入力した値が取得されます (これは良いことです)。それらの除算演算を実行すると、結果として常に 0 が返されます..エラーはどこにありますか?
public int computeBMI(){
SharedPreferences customSharedPreference = getSharedPreferences(
"myCustomSharedPrefs", Activity.MODE_PRIVATE);
String Height = customSharedPreference.getString("heightpref", "");
String Weight = customSharedPreference.getString("weightpref", "");
int weight = Integer.parseInt(Weight);
int height = Integer.parseInt(Height);
Toast.makeText(CalculationsActivity.this, Height+" "+ Weight , Toast.LENGTH_LONG).show();
int bmi = weight/(height*height);
return bmi;
}