Android ScrollView只能添加一个子控件问题解决方法
程序员文章站
2024-02-25 21:09:33
本文实例讲述了android scrollview只能添加一个子控件问题解决方法。分享给大家供大家参考,具体如下:
有下面一段代码
本文实例讲述了android scrollview只能添加一个子控件问题解决方法。分享给大家供大家参考,具体如下:
有下面一段代码
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <scrollview android:layout_width="fill_parent" android:layout_height="fill_parent" > <button android:layout_width="fill_parent" android:layout_height="wrap_content" /> <button android:layout_width="fill_parent" android:layout_height="wrap_content" /> <button android:layout_width="fill_parent" android:layout_height="wrap_content" /> </scrollview> </linearlayout>
一个scrollview里面添加了三个button,也许你认为没有什么问题,那么我们运行一下看看
出现了一个异常
很明显,异常告诉我们scrollview can host only one direct child
既然说只能容纳一个直接的子控件,那么我们就可以容纳多个间接的子控件,直接在这些子控件外面再套一层linearlayout就ok了
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <scrollview android:layout_width="fill_parent" android:layout_height="fill_parent" > <linearlayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <button android:layout_width="fill_parent" android:layout_height="wrap_content" /> <button android:layout_width="fill_parent" android:layout_height="wrap_content" /> <button android:layout_width="fill_parent" android:layout_height="wrap_content" /> </linearlayout> </scrollview> </linearlayout>
更多关于android相关内容感兴趣的读者可查看本站专题:《android开发入门与进阶教程》、《android多媒体操作技巧汇总(音频,视频,录音等)》、《android基本组件用法总结》、《android视图view技巧总结》、《android布局layout技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。