I'm having a problem trying to debug an Android application in Eclipse. When I press the F5, F6 or F8 keys, simply the break point line does not pass to the next instruction (line), it stops. I had already used the Eclipse Debug and had never had problems.
Look at the screenshot of my Eclipse and the code I'm trying to debug. I have tried to summarize, but still the break point does not advance to the next line.
voidinit(){txtFrequencia=(EditText)findViewById(R.id.editText_Frequencia);txtQuantidade=(EditText)findViewById(R.id.editText_Quantidade);txtIntervalo=(EditText)findViewById(R.id.editText_Intervalo);txtNomeMedicamento=(EditText)findViewById(R.id.editText_NomeMedicamento);tmpInicioTratamento=(TimePicker)findViewById(R.id.timePicker_InicioTratamento);spnTipoDosagem=(Spinner)findViewById(R.id.spinner_TipoDosagem);btnSalvar=(Button)findViewById(R.id.button_salvar_agenda);toast=Toast.makeText(this.getApplicationContext(),"Você Apertou o Botão", Toast.LENGTH_SHORT);
btnSalvar.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
add();
}
});
}
Note: I have already tested in two versions of Eclipse and I am using Windows 8 64bit