How to defines which edges should be fadeded on scrolling.
Android/Android Development 2010. 4. 1. 16:27리스트 뷰와 같은 형태에서 스크롤이 생길때 아래, 위로 그림자 형태가 생기는 현상을 없애는 방법
on Xml layout
<ListView android:id="@android:id/list"
...
android:fadingEdge = "none"
...
/>
ListView clipsList;
list.setVerticalFadingEdgeEnabled(false);
이하 안드로이드 문서 내용 발췌
Defines which edges should be fadeded on scrolling.
Must be one or more (separated by '|') of the following constant values.
Constant | Value | Description |
---|---|---|
none |
0x00000000 | No edge is faded. |
horizontal |
0x00001000 | Fades horizontal edges only. |
vertical |
0x00002000 | Fades vertical edges only. |
This corresponds to the global attribute resource symbol fadingEdge
.
참조문서:
http://www.androidpub.com/63175