<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center">
<ImageView android:src="@drawable/fishh"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ImageView android:src="@drawable/kg01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<ImageView android:src="@drawable/fruitt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
--------------------------------------------------------------------------
위와 같이 이미지 3개를 수평으로 배치하고 나머지 테이블 등등은 수직으로 배치하여
스크롤뷰가 되도록 할려고 하는데 에러가 나네요.
* LogCat=>> ScrollView can host only one direct child.
어떻게 배치해야 좋겠습니까?




오류에 나온대로 되게끔 만들면 되죠... 스크롤뷰 아래 레이아웃 하나만 있게 만들면 되죠...