상세 컨텐츠

본문 제목

안드로이드 수평 스크롤뷰~

스마트기기개발관련/안드로이드 개발

by AlrepondTech 2011. 7. 14. 11:47

본문

반응형

 

 

 

=================================

=================================

=================================

 

 

 

 

 

 

출처: http://chiwoos.tistory.com/154


안드로이드에서 수평으로 스크롤 뷰를 표현하려면, 아래의 코드형식으로 XML에 코딩한다.

 
<ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"   android:id="@+id/SpreadVScroll"   android:layout_width="fill_parent"   android:layout_height="fill_parent"> <HorizontalScrollView   android:id="@+id/SpreadHScroll"   xmlns:android="http://schemas.android.com/apk/res/android"   android:layout_width="fill_parent"   android:layout_height="fill_parent">   <ImageView     android:id="@+id/image       android:layout_width="wrap_content       android:layout_height="wrap_content"     </ImageView> </HorizontalScrollView> </ScrollView>
스크롤 뷰를 사라지게 하는 효과와 시간조절을 셋팅하려면, 아래 코드를 추가.
 
 		android:fadeScrollbars="true" 		android:scrollbarFadeDuration="500" 		android:scrollbarDefaultDelayBeforeFade="1000"
 

 

 

=================================

=================================

=================================

 

 

 

반응형


관련글 더보기

댓글 영역