up vote 0 down vote favorite
1
share [g+] share [fb]

I have a TextView inside a LinearLayout. The LinearLayout is able to receive focus, and I want the textColor of the TextView to change when it does. I thought using a ColorStateList would work, but it would seem that the TextView does not receive focus when the LinearLayout does. I know that, because I have tried this code:

mTextView.setOnFocusChangeListener(new OnFocusChangeListener() {

    @Override
    public void onFocusChange(View v, boolean hasFocus) {
    	Log.d(TAG, "Changed TextView focus to: " + hasFocus);
    }
});

And nothing gets logged. I don't want to use an OnFocusChangeListener on the LinearLayout to change the textColor of the TextView, I think this has to be done from XML. The reason for that is because in another activity I have an ExpandableListView with a custom adapter and custom views and Android changes the textColors of the TextViews (from light to dark) inside my custom views when items are focused.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

This is an old post, but since I had the same problem, here is the XML attribute I found to do this :

android:duplicateParentState="true"

(to be added to the TextView to change its "focused" state when the Layout's state changes)

link|improve this answer
feedback

You can fetch yout TextView in the onFocuseChange method of LinearLayout's listener. Something like

public void onFocusChange(View v, boolean hasFocus) {
    TextView tv = (TextView)v.findViewById(R.id.myTextView);
    tv.setTextColor(R.color.foo);
}

Since your LL can host multiple widgets I think it's expected that onFocus of the LL will not propagate even if you have a single control

link|improve this answer
I know I can do it that way, but as I said in the original post, I would like to avoid it. Also, if you have ever used a custom adapter for a ListView you would see that it still changes the text color when focusing a list item, no matter how many elements you have inside an item view. I'm curious how they did that, and I'll bet it's done from XML only. – Felix Oct 19 '09 at 12:48
feedback

Your Answer

 
or
required, but never shown

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