读书人

横向 纵向组合的ScrollView

发布时间: 2012-08-17 02:08:34 作者: rapoo

横向 纵向结合的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>
?

?

?

读书人网 >移动开发

热点推荐