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

hoziontalscrollview 에 layout을 여러개 넣을순 없나요? [closed]

0 추천

제가 하고 싶은건 두개의 서로 다른 레이아웃을 horizontalscrollview가 보여주는 그런 방식으로 배치를 하고 싶은데

 

<horizontalScrollView
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       >
       <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/black"
            >

        </RelativeLayout>
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@android:color/white"
            >

        </RelativeLayout>
</HorizontalScrollView>

                                   

굳이 예를 들자면 이런식으로여ㅜ 

다음 질문과 중복으로 종료됨: 레이아웃 중첩 시, 전체 화면 스크롤 질문
4mond (180 포인트) 님이 2015년 7월 3일 질문
4mond님이 2015년 7월 3일 closed
...