LinearLayout 垂直滚动

activity中经常只是一个LinearLayout,但这样的话,如果activity内容超过一屏,无法滚动查看下面的内容。

这时只需在外面嵌套一个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="fill_parent"  
        android:scrollbars="vertical"  
        android:fadingEdge="vertical">  
        <LinearLayout  
            android:layout_width="fill_parent"  
            android:layout_height="fill_parent"  
            android:orientation="vertical"  
            android:scrollbarStyle="outsideInset"  
            android:scrollbars="vertical">  
        </LinearLayout>  
    </ScrollView>  

遇到的一个bug parsing XML: unbound prefix:http://trinea.iteye.com/blog/1084706

 

参考:

http://bywuyu.blog.163.com/blog/static/1687376682010101064641190/LinearLayout 垂直滚动


上一篇:互联网公司为啥不使用mysql分区表?(一分钟系列)


下一篇:《Hadoop海量数据处理:技术详解与项目实战》一 3.2 HDFS读取文件和写入文件