<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
ScrollView也是一個容器,它是FrameLayout的子類,它的主要作用就是將超出物理螢幕的內容顯示出來,(就是卷軸效果)ScrollView提供垂直捲動,進而可將超出物理螢幕的內容顯示出來。
在一般情況下,可以將一個採用垂直方式佈局元件的LinearLayout作為ScrollLayout容器的子元件,同時,在LinearLayout容器中可以顯示超出螢幕物理高度的內容。
這麼說有點抽象,然後我們現在實現完成一個偵錯板顏色的顯示,效果如下:(可以往下捲動)
程式碼:
<?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"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#07C2FB" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#07C2FB" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#C60426FD" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#C60426FD" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#032898" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#032898" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#021173" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#021173" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#504DAE" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#504DAE" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#3C60A6" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#3C60A6" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#282EA8" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#282EA8" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#273523" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="##5E7559" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#0E1E73" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#0E1E73" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#305BC8" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#305BC8" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#282EA8" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#282EA8" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#0B685E" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#0B685E" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#263B7E" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#263B7E" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <View android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="2" android:background="#0A7AC5" /> <TextView android:layout_width="0dp" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#0A7AC5" /> </LinearLayout> </LinearLayout> </ScrollView>
當然了ScrollView只提供了垂直卷軸,若要使用水平捲動功能,則Android提供了HorizontalScrollView容器,HorizontalScrollView容器可以提供水平捲動,它的使用方法與ScrollView類似
<?xml version="1.0" encoding="utf-8"?> <HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="wrap_content" android:layout_height="match_parent" android:orientation="horizontal"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#2479CE" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#2479CE" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#C97A06" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#C97A06" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#68060E" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#68060E" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#271904" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#271904" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#673AB7" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#673AB7" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#1B5834" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#1B5834" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#680379" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#680379" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#043485" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#043485" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#798506" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#798506" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#B12E04" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#B12E04" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#A09006" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#A09006" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <View android:layout_width="200px" android:layout_height="60dp" android:layout_weight="2" android:background="#920C02" /> <TextView android:layout_width="200px" android:layout_height="60dp" android:layout_weight="1" android:gravity="center" android:text="#920C02" /> </LinearLayout> </LinearLayout> </HorizontalScrollView>
實現效果:
到此這篇關於Android超詳細講解元件ScrollView的使用的文章就介紹到這了,更多相關Android ScrollView內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45