scrolled.xml revision 2605f91f705fbf51800c6fde8ee8cd5f199447b4
1<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2              android:layout_width="match_parent"
3              android:layout_height="match_parent"
4              android:orientation="vertical"
5              android:scrollX="30px"
6              android:scrollY="90px">
7    <LinearLayout
8        android:layout_width="60dp"
9        android:layout_height="60dp"
10        android:background="#FF0000" />
11    <LinearLayout
12        android:layout_width="60dp"
13        android:layout_height="30dp"
14        android:background="#00FF00" />
15    <LinearLayout
16        android:layout_width="60dp"
17        android:layout_height="60dp"
18        android:background="#0000FF" />
19    <LinearLayout
20        android:layout_width="60dp"
21        android:layout_height="30dp"
22        android:background="#FF00FF" />
23    <LinearLayout
24        android:layout_width="60dp"
25        android:layout_height="60dp"
26        android:background="#00FFFF" />
27
28    <LinearLayout
29        android:layout_width="200dp"
30        android:layout_height="400dp"
31        android:orientation="vertical"
32        android:scrollX="-90px"
33        android:scrollY="450px">
34        <LinearLayout
35            android:layout_width="fill_parent"
36            android:layout_height="60dp"
37            android:background="#FF0000" />
38        <LinearLayout
39            android:layout_width="fill_parent"
40            android:layout_height="30dp"
41            android:background="#00FF00" />
42        <LinearLayout
43            android:layout_width="fill_parent"
44            android:layout_height="60dp"
45            android:background="#0000FF" />
46        <LinearLayout
47            android:layout_width="fill_parent"
48            android:layout_height="30dp"
49            android:background="#FF00FF" />
50        <LinearLayout
51            android:layout_width="fill_parent"
52            android:layout_height="60dp"
53            android:background="#00FFFF" />
54    </LinearLayout>
55
56
57</LinearLayout>
58