特點(diǎn)1
1.去除滾動條
- 一種是在XML的ScrollView布局中加入屬性
android:scrollbars="none" - 另一種則是在代碼中獲取ScrollView后進(jìn)行
setVerticalScrollBarEnabled(false)
特點(diǎn)2
getScroll() 獲取滾動條的位置讥邻,當(dāng)<=0時列疗,滾動條在頂部
scrollTo()
scrollBy()
特點(diǎn)3
setOnTouchListen()
getChildAt() 獲取子組建的位置,長度
getHeight() 內(nèi)容可以包含在一個屏幕尺寸內(nèi)
getMeasureHeight() 內(nèi)容不能包含在一個屏幕尺寸內(nèi)卒蘸,需要滾動
bug1
標(biāo)簽 : ScrollView ImageView 空白
Bug 描述
- 在ScrollView中直接引用ImageView囚玫,會出現(xiàn)ImageView上下位置出現(xiàn)空白
解決方案
- 在ImageView的屬性中添加如下配置
android:adjustViewBounds="true"
bug2
標(biāo)簽 : scrollview 高度自適應(yīng)