2017년 4월 22일 토요일

[Android 2.3] scroll view, 스크롤 되게 하기

s이전버전은 뭔가 스크롤하게 하는게 엄청 빡시게 적어놔서 잔뜩 겁먹고 검색했는데,
2.3버전부터는 너무나도 심플해졌다.

초간단 예시를 들자면 이러하다.

... 에 자신이 넣고자 하는 컨텐츠들을 넣는다는 가정하에


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"              android:layout_width="match_parent"              android:layout_height="match_parent"              android:orientation="vertical"              android:gravity="center">

    <ScrollView         
     android:layout_width="match_parent"         
     android:layout_height="match_parent">
        <LinearLayout             
         android:layout_width="match_parent" 
         android:layout_height="wrap_content" 
         android:orientation="vertical">
            ...
            ... 
        </LinearLayout>
    </ScrollView>
</LinearLayout>




사장님..너무 쉬운거같아요!
세상에나마상에나 네줄만 추가하면 된다.
응용하면 더 힘들겠지만 일단은 이러했다.

댓글 없음:

댓글 쓰기