安卓开发之ScrollView
当界面不足以将所有的内容显示出来的时候便导致下面的部分内容无法显示出来
所有加上ScrollView 来讲要显示的内容放入之中便可以实现上下滚动界面内容
但是当要显示多个控件的时候会出错 原因是ScrollView只能有一个子控件 解决方法就是 用一个LinearLayout(或者别的布局)来嵌套所有的控件
xml代码如下:
<ScrollView android:id="@+id/ScrollView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:scrollbars="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="fill_parent" android:orientation="vertical" > -------------这里添加任意个控件---------- </LinearLayout> </ScrollView>
作者:听着music睡
出处:http://www.cnblogs.com/xqxacm/
Android交流群:38197636
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。