横向 纵向结合的ScrollView

就是HorizontalScrollView和ScrollView的相互嵌套。

 

 <HorizontalScrollView 
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"
           >
       <ScrollView 
           android:layout_width="wrap_content"
           android:layout_height="wrap_content"
           >
       <LinearLayout 
           android:orientation="vertical"
           android:layout_width="fill_parent"
           android:layout_height="wrap_content"
           >
<!-- 嵌套在中间的其他的一些组件(ScrollView只能嵌套一个子对象!) -->


 </LinearLayout>
       </ScrollView>
       </HorizontalScrollView>
 

 

 

你可能感兴趣的:(scrollview)