[转]Android HorizontalScrollView和ScrollView 水平滚动 垂直滚动


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

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

<?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>


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM