Ниже кода, который выполняет горизонтальную и вертикальную прокрутку, чтобы увидеть его эффект, сначала определите область вокруг 200x 200 dp и вставьте в нее этот код.
Вид будет прокручиваться горизонтально кака также вертикально.
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbarSize="10dp"
android:scrollbars="vertical" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
<Button
android:layout_width="300dp"
android:layout_height="100dp" />
</LinearLayout>
</LinearLayout>
</HorizontalScrollView>