CODEDRAGON ㆍDevelopment/Android
ViewPager
· android-support-v4.jar 를 추가해 주어야 합니다.
· 안드로이드 SDK에서 기본으로 제공해주는 클래스가 아니기 때문에 "android-support-v4.jar"라는 Library를 추가 해서 사용 해야 합니다.
· ViewPager를 이용하면 좌우로 슬라이드 화면 전환시키기를 할 수 있습니다.
PageAdapter 주요 메소드
메소드 |
설명 |
getCount() |
현재 PagerAdapter 에서 관리할 갯수 반환 |
instantiateItem() |
ViewPager에서 사용할 뷰객체 생성 및 등록 |
destroyItem() |
View 객체를 삭제 |
isViewFromObject() |
instantiateItem 메소드에서 생성한 객체를 이용할 것인지 여부를 반환 |
saveState() |
현재 UI 상태를 저장하기 위해 Adapter와 Page 관련 인스턴스 상태를 저장
|
restoreState() |
saveState() 상태에서 저장했던 Adapter와 page를 복구 |
startUpdate() |
페이지 변경이 시작될 때 호출 |
finishUpdate() |
페이지 변경이 완료 됐을 때 호출 |
android-support-v4.jar
· ViewPager는 SDK에서 기본적으로 존재하지 않기 때문에 android-support-v4.jar 라이브러리를 추가해 주어야 합니다.
· 외부 라이브러리에 있는 것을 사용할 때에는 패키지 명을 붙여서 "전체패키지 경로"를 명시하여 사용하시기 바랍니다.
<android.support.v4.view.ViewPager
android:id="@+id/vpView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/llMenu"
/> |
'Development > Android' 카테고리의 다른 글
AlertDialog 주요 메소드 (0) | 2018.01.03 |
---|---|
AlertDialog 클래스, AlertDialog 생성자, AlertDialog.Builder (0) | 2018.01.03 |
터치이벤트, \anim폴더 생성 후 XML 파일 생성하기, anim 속성 태그 (0) | 2018.01.02 |
ViewFlipper (0) | 2018.01.02 |
Spinner (0) | 2018.01.02 |