Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 10th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ScrollView : Change the edge effect color with Holo
  2. new ScrollView(this) {
  3.         @Override
  4.         @ExportedProperty(category = "drawing")
  5.         public int getSolidColor() {
  6.             // Set a background color to a color you want for the edges.
  7.         }
  8.     };
  9.        
  10. <ScrollView
  11. ...
  12. android:background="@color/yourColor"
  13. ... />
  14.        
  15. <ScrollView
  16. ...
  17. android:overScrollMode="never"
  18. ... />