0

So, in my current project I have a LinearLayout with orientation set to vertical. During runtime, views will be added to the Layout programatically. I would like the contents of the layout to fade out (trail off) at the bottom instead of just being cut off. I've looked into fadingEdge but no matter how I change the settings for fadingEdge and fadingEdgeLength, there appears to be no change in how the view looks.

Info:

  • Working in Eclipse layout editor
  • Using a custom theme (HoloEverywhere)
  • Target is 4.0.3 but minSdkVersion is 8 (im using android compatibility and sherlockactivitybar)

Thanks in advance!

Brandon
  • 4,486
  • 8
  • 33
  • 39
  • Is the LinearLayout the root of your content? If so, you might try wrapping it in a ScrollView. – Scott W Oct 19 '12 at 01:06

1 Answers1

0

It seems as the method was deprecated at the release of ICS, and that it's now ignored (at least that's what the documentation says)...

ToVine
  • 560
  • 5
  • 16