Android 嵌套滚动条
【摘要】
Android SDK有两个滚动组件,HorizontalScrollView和ScrollView。一个是水平滚动,另一个是垂直滚动。两个嵌套使用,可实现水平和垂直滚动。
<?xml version="1.0" encoding="utf-8"?><ScrollView xmlns:android=...
Android SDK有两个滚动组件,HorizontalScrollView和ScrollView。一个是水平滚动,另一个是垂直滚动。两个嵌套使用,可实现水平和垂直滚动。
-
<?xml version="1.0" encoding="utf-8"?>
-
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
-
android:layout_width="match_parent"
-
android:layout_height="match_parent">
-
<HorizontalScrollView
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content">
-
<LinearLayout
-
android:layout_width="match_parent"
-
android:layout_height="wrap_content"
-
android:orientation="horizontal">
-
<!-- 此处省略若干水平滚动子视图 -->
-
</LinearLayout>
-
</HorizontalScrollView>
-
<!-- 此处省略若干垂直滚动子视图 -->
-
</ScrollView>
文章来源: blog.csdn.net,作者:福州-司马懿,版权归原作者所有,如需转载,请联系作者。
原文链接:blog.csdn.net/chy555chy/article/details/51559495
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)