青衣 发表于 2021-7-11 12:09:18

Scrollview滚动条用法

  今天写代码时用到滚动条,突然忘记scrollview的用法了,就复习了之后,就分享出来,小知识点的不停地温习:
  
[*] <?xml version="1.0" encoding="utf-8"?>    
[*] <ScrollView    
[*]     xmlns:android="http://schemas.android.com/apk/res/android"    
[*]     android:layout_width="fill_parent"    
[*]     android:layout_height="fill_parent"    
[*]     android:scrollbars="vertical"    
[*]     android:fadingEdge="vertical">    
[*]     <LinearLayout    
[*]         android:layout_width="fill_parent"    
[*]         android:layout_height="fill_parent"    
[*]         android:orientation="vertical"    
[*]         >    
[*]     </LinearLayout>    
[*] </ScrollView>    

  activity中经常只是一个LinearLayout,但这样的话,如果activity内容超过一屏,无法滚动查看下面的内容。
  这时只需在外面嵌套一个ScrollView就可以了,直接贴代码吧


  
文档来源:51CTO技术博客https://blog.51cto.com/u_14397532/3035646
页: [1]
查看完整版本: Scrollview滚动条用法