ScrollView
ScrollView는 말그대로 스크롤을 할수있게 해주는 뷰이다
다음과 같이 사용한다.
1 2 3 4 | <ScrollView android:layout_width="match_parent" android:layout_height="wrap_content"> </ScrollView> | cs |
HorizontalScrollView
ScrollView는 가로방향으로 할수없다.
그래서 따로 HorizontalScrollView를 사용해서 가로로 넘길수 있도록 한다.
1 2 3 4 5 | <HorizontalScrollView android:layout_width="match_parent" android:layout_height="wrap_content"> </HorizontalScrollView> | cs |
'Programming > Android' 카테고리의 다른 글
Custom Listview (0) | 2016.09.24 |
---|---|
ListFragment (0) | 2016.09.24 |
xml 경계선 (0) | 2016.09.15 |
xml include (0) | 2016.09.15 |
View (0) | 2016.09.07 |