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

In my Android app, I have a LinearLayout View that contains other views. The LinearLayout is clickable, but when it is clicked, it does not flash orange like it should. How can I get it to flash?

link|improve this question
which attribute did you use in your xml? onClick or clickable? – Sephy Mar 11 '10 at 10:58
feedback

2 Answers

To produce the same flash effect you see when you click a listView item try this in your LinearLayout click handler:

public void onLinearLayoutClick(View v) {

  view.setBackgroundResource(android.R.drawable.list_selector_background);

  ...
}
link|improve this answer
That will work. By the way behind "android.R.drawable.list_selector_background" will be such a selector Sephy is talking about. You also can take a look at this xml file in your Android SDK files in folder "platforms". – OneWorld Dec 2 '10 at 10:16
feedback

I think you need to define 2 states for your layout if it is not natively defined for it. Have a look here if you want, it explains how to do it for a button for instance.

link|improve this answer
You need to prefix the schema with xmlns: in that example. – Lars D Sep 16 '10 at 7:10
feedback

Your Answer

 
or
required, but never shown

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