Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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));
share|improve this question
Why are you casting it to int on setText input when it is allreay an int? – Indrek Kõue Jul 26 '11 at 7:55
Why are you type casting the editbox so many times. – Ravi Vyas Jul 26 '11 at 13:01
Because eclipse complained, anyway i solved it by using another editext that disables.on focus and all the others activate it when they got focus, and when their focus is lost i run the code that i want to run for that edittext box. – thabubble Jul 30 '11 at 10:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.