I'm getting pretty tired of java, I like python more, anyone that like java and can help me with this?
((EditText)findViewById(R.id.editText1)).setOnKeyListener(new EditText.OnKeyListener()
{
public boolean onKey(View v, int keyCode, KeyEvent event)
{
int text = Integer.parseInt(((EditText)findViewById(R.id.editText1)).getText().toString());
((EditText)findViewById(R.id.editText2)).setText((int) (text - (text / 2.2) % 2.5));
((EditText)findViewById(R.id.editText3)).setText((int) (text - (text / 2.2 / 7 * 10) % 2.5));
((EditText)findViewById(R.id.editText4)).setText((int) (text - (text / 2.2 / 7 * 10) % 5));
setTextinput when it is allreay an int? – Indrek Kõue Jul 26 '11 at 7:55