3
在我的Android 應用我想用一個滾動型,它必須滾動既X軸和Y軸。沒有同時使用ScrollView和HorizontalScrollView因爲我不能使用一個ScrollView並啓用兩個滾動條。我做的是以下。滾動的Android滾動型到X軸和Y軸
<ScrollView
android:id="@+id/srv1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/ll1" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/linearMain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:animateLayoutChanges="true"
android:orientation="vertical" >
</LinearLayout>
</HorizontalScrollView>
</ScrollView>
是否可以只使用一個滾動視圖並啓用兩個滾動條。謝謝!!