티스토리 뷰

안드로이드

안드로이드 중첩 ScrollView

에그미 2020. 2. 25. 21:30

안드로이드 개발을 하다보면 ScrollView 안에 ScrollView를 넣을 상황이 올 때가 있습니다

 

다음 코드는 안쪽의 ScrollView가 작동에 문제가 있었습니다

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
 
    ....
    
    
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
            .....
 
        </ScrollView>
 
 
</ScrollView>
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

 

그럴 때 NestedScrollView를 사용하면 됩니다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
android:layout_width="match_parent"
android:layout_height="match_parent">
 
    ....
    
    
        android:layout_width="match_parent"
        android:layout_height="match_parent">
 
            .....
 
 
 
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함