i've some edittext and i'm checking the string inside it entered from users. when users clicks button at the end of dialog, if some edittexts aren't filled, i change background color of it and set a text in this way:

for(int i=0;i<fields.length;i++){
            if(fields[i].getText().toString().trim().length()<=0){
                redFields(fields[i]);
            }
        }
private void redFields(EditText t){
        t.setBackgroundColor(Color.RED);
        t.setText("FIELD REQUESTED!");
    }

Now when users clicks again on a red edittext i want to change background color to white and delete text inside it ( FIELD REQUESTED ). I'm trying to do it in this way:

private void addFieldsListener(){
        for(EditText f : fields){
            final EditText ff = f;
            ff.setOnFocusChangeListener(new View.OnFocusChangeListener() {
                public void onFocusChange(View v, boolean hasFocus) {
                    if(hasFocus && ff.getBackground().equals(Color.RED)){
                        ff.setBackgroundColor(Color.WHITE);
                    }
                }
            });
        }
    }

but nothing :( i try with onClickListener but it doesn't work. how can i do it? can you help me?

link|improve this question

72% accept rate
you are getting row. getBackground() return a drawable. You are comparing drawable with a color... Please check this. – Arslan Jan 26 at 13:17
feedback

2 Answers

up vote 2 down vote accepted

Why you do not use the method SetError(...) on the EditText component ?
http://developer.android.com/reference/android/widget/TextView.html#setError%28java.lang.CharSequence%29

link|improve this answer
THANKS YOU!!! :D this is way i want ;) – JackTurky Jan 26 at 13:29
1  
you're welcome ;) – François BOURLIEUX Jan 26 at 13:50
feedback

Edittext uses a Nine Patch Drawable. You can check the below link to modify the existing drawable.

http://www.androidworks.com/changing-the-android-edittext-ui-widget

Hope this will help you

Summved

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.