보통은 listview -> child item 순서인데
descendantFocusability 로 해결가능
본문
Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.
Must be one of the following constant values.
Constant | Value | Description |
---|---|---|
beforeDescendants | 0 | The ViewGroup will get focus before any of its descendants. |
afterDescendants | 1 | The ViewGroup will get focus only if none of its descendants want it. |
blocksDescendants | 2 | The ViewGroup will block its descendants from receiving focus. |
This corresponds to the global attribute resource symbol descendantFocusability
.
Related Methods
'프로그래밍 > Android 짜투리 지식' 카테고리의 다른 글
[android] google analytics 에 대해 알게 된 것들. (0) | 2013.10.07 |
---|---|
[android] google Analytics (0) | 2013.10.06 |
[android] facebook multi image swipe (0) | 2013.07.22 |
[android] imageView.setColorFilter (0) | 2013.06.03 |
[android] TextView 부분색상 (0) | 2013.04.04 |