마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

gallery 질문 있습니다.

0 추천

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_marginTop="20dp"
        android:background="@color/whiteblack"
        android:gravity="center_vertical"
        >
        
        <LinearLayout
            android:layout_width="match_parent"
        	android:layout_height="wrap_content"
        	android:background="@color/white"
        	android:layout_margin="20dp"
            >
            
			<Gallery
			    android:gravity="left"
			    android:id="@+id/recommendList"
			    android:layout_width="match_parent"
			    android:layout_height="200dip"
			    android:animationDuration="1000"
			    android:spacing="5dip" />
        </LinearLayout>
    </LinearLayout>

앞쪽으로 배치하고 싶은데 가운데에서 시작합니다. 

zjsltm (350 포인트) 님이 2015년 7월 13일 질문

1개의 답변

0 추천
 
채택된 답변
정식 방법은 없고 갤러리를 상속해서 새로 구현하시는 방법 뿐이 없나보군요

http://stackoverflow.com/questions/3615140/android-gallery-image-position-problem

http://stackoverflow.com/questions/10026845/gallery-view-is-not-starting-from-left

 

setSelection 으로 비스무래 표현을 할수는 있으나 추천하지 않는 방법 같네요

두 번째 링크에는 마진 값을 조절해서 하는 방법도 있으니 참고하세요
aucd29 (218,390 포인트) 님이 2015년 7월 14일 답변
zjsltm님이 2015년 7월 14일 채택됨
...