Я настраиваю метод onclick и не могу получить доступ к int, который я установил в его родительском методе, есть ли другой способ использовать Int?
, вот код:
Date past = new Date(cYear, cMonth, cDay); // current Date
Date today = new Date(mYear, mMonth, mDay); // date Choosen by the user
int days = Days.daysBetween(new DateTime(past), new DateTime(today)).getDays()+1;
mDateDisplay.setText(""+days);
// display the current date (this method is below)
updateDisplay();
mButton.setOnClickListener(
new View.OnClickListener()
{
public void onClick(View view)
{
s = WorkoutChoice.this.weight.getText().toString();
s2 = WorkoutChoice.this.height.getText().toString();
int w = Integer.parseInt(s);
double h = Double.parseDouble(s2);
double BMI = (w/h)/h;
t.setText(""+BMI);
id = db.insertTitle("001", ""+days, ""+BMI)
}
});