私は数字を扱っています。共有設定からintを取得し、いくつかの計算を行い、結果が2つの数字の間にある場合は何かをしたいと考えています。
SharedPreferences settings = getApplicationContext().getSharedPreferences("shared", Context.MODE_PRIVATE);
int A = settings.getInt("A", 1);
int B = settings.getInt("B", 1);
operation = (TextView) findViewById(R.id.imc );
operation.setText(A*B);
String operation;
if (SOMETHING HERE!) { // is situated between 1 and 20
something
}
私は何をすべきか?どんな提案も高く評価されます。