您的位置:首页 > 移动开发 > Android开发

Android HorizontalScrollView和ScrollView 水平滚动 垂直滚动

2013-01-25 17:25 806 查看

Android SDK有两个滚动组件,HorizontalScrollView和ScrollView。一个是水平滚动,另一个是垂直滚动。两个嵌套使用,可实现水平和垂直滚动。

本文转自:http://hi.baidu.com/laoyang1018/blog/item/b34b241f3c7b44d6a78669b1.html


<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent" android:layout_height="wrap_content">
    <HorizontalScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
        <RelativeLayout android:orientation="horizontal"
            android:layout_width="fill_parent" android:layout_height="fill_parent">
            <!--  此处省略的组件的配置  -->
            ... ...
        </RelativeLayout>
    </HorizontalScrollView>
</ScrollView>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐