Hi,

I have a standard listview, the row definition looks like this:

  <LinearLayout>
    <TextView>
    <Button>
  </LinearLayout>

not sure if this is possible - but it would be nice if the user could
scroll down the list using the trackball, and the entire LinearLayout
parent gets highlighted, and is clickable. If they wheel to the right,
while a row is highlighted, then just the Button gets highlighted.

I can't get that to work though. If I make the whole row clickable,
then I can't wheel over to the button. If I wrap the TextView in
another LinearLayout, and make that layout clickable - then wheeling
over to the right works, but the whole row won't highlight, and it
looks funny:

  <LinearLayout>
    <LinearLayout>
      <TextView>
    </LinearLayout>
    <Button>
  </LinearLayout>

anyone write something like this?

Thanks

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to