欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android实现Activity水平和垂直滚动条的方法

程序员文章站 2024-03-03 23:15:22
本文实例讲述了android实现activity水平和垂直滚动条的方法。分享给大家供大家参考,具体如下:

本文实例讲述了android实现activity水平和垂直滚动条的方法。分享给大家供大家参考,具体如下:

<scrollview xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="vertical" >
  <horizontalscrollview
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    >
  <linearlayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
  </linearlayout>
  </horizontalscrollview>
</scrollview>

根标签是scrollview下面的子标签是horizontalscrollview,然后horizontalscrollview下面就是你自己的布局了。

ps:scrollview和horizontalscrollview标签下面都只能嵌入一个标签

更多关于android相关内容感兴趣的读者可查看本站专题:《android编程之activity操作技巧总结》、《android视图view技巧总结》、《android操作sqlite数据库技巧总结》、《android操作json格式数据技巧总结》、《android数据库操作技巧总结》、《android文件操作技巧汇总》、《android编程开发之sd卡操作方法汇总》、《android开发入门与进阶教程》、《android资源操作技巧汇总》及《android控件用法总结

希望本文所述对大家android程序设计有所帮助。