項目里的效果拎出來做了個栗子,拿來和大家一起分享器腋,一個很簡單的栗子伏钠,不喜勿噴~
栗子慣例,先上GIF
代碼分析
其實核心的地方也是獲取ListView的垂直滾動距離蚂蕴,在獲取到滾動距離以后低散,根據(jù)垂直滾動距離來設(shè)置標(biāo)題欄的背景透明度。
參考代碼:感謝作者~ListView 獲取精確的垂直滾動距離骡楼,但是有個BUG熔号,待會說,代碼中也會標(biāo)明鸟整,不用擔(dān)心錯過BUG~
activity_main.xml
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/lvTitleFade"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<RelativeLayout
android:id="@+id/rlTitle"
android:layout_width="match_parent"
android:layout_height="56dp"
android:background="@color/colorPrimary" >
<ImageButton
android:src="@drawable/back"
android:background="@null"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_width="match_parent"
android:layout_height="56dp"
android:gravity="center"
android:text="FJTitleFade"
android:textColor="#ffffff"
android:textSize="20sp" />
</RelativeLayout>
</FrameLayout>
說明:主布局很簡單引镊,布局選用FrameLayout,讓標(biāo)題欄在ListView的上方~
MainActivity.java核心代碼
private SparseArray recordSp = new SparseArray(0);
private int mCurrentfirstVisibleItem = 0;
//設(shè)置標(biāo)題背景透明
rlTitle.getBackground().setAlpha(0);
//滑動監(jiān)聽篮条,注意implements OnScrollListener
lvTitleFade.setOnScrollListener(this);
@Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
}
//滑動事件處理
@Override
public void onScroll(AbsListView view, int firstVisibleItem,
int visibleItemCount, int totalItemCount) {
//firstVisibleItem--處于頂部的Item標(biāo)記
//visibleItemCount--當(dāng)前可見item數(shù)
//totalItemCount----總item數(shù)
mCurrentfirstVisibleItem = firstVisibleItem;
View firstView = view.getChildAt(0);
if (null != firstView) {
ItemRecod itemRecord = (ItemRecod) recordSp.get(firstVisibleItem);
if (null == itemRecord) {
itemRecord = new ItemRecod();
}
itemRecord.height = firstView.getHeight();//獲取最頂部Item的高度
itemRecord.top = firstView.getTop();//獲取距離頂部的距離
recordSp.append(firstVisibleItem, itemRecord);//設(shè)置值
}
Log.d("dmdrs", "滑動距離:" + getScrollY());
int ScrollY = getScrollY();
if (ScrollY >= 0 && ScrollY <= 255) {
//設(shè)置標(biāo)題欄透明度0~255
rlTitle.getBackground().setAlpha(ScrollY);
} else if (ScrollY > 255) {
//滑動距離大于255就設(shè)置為不透明
rlTitle.getBackground().setAlpha(255);
}
}
private int getScrollY() {
int height = 0;
for (int i = 0; i < mCurrentfirstVisibleItem; i++) {
ItemRecod itemRecod = (ItemRecod) recordSp.get(i);
Log.d("dmdrs", "xxx1:" + itemRecod);
//06-07 21:00:21.601: D/dmdrs(23096): xxx1:
// com.dmdrs.titlefade.MainActivity$ItemRecod@529122fc
//06-07 21:00:21.601: D/dmdrs(23096): xxx2:300
//06-07 21:00:21.601: D/dmdrs(23096): xxx1:null
//快速滑動會為空弟头,判斷一下,發(fā)現(xiàn)的bug
if(itemRecod != null){
height += itemRecod.height;
}
Log.d("dmdrs", "xxx2:" + height);
}
ItemRecod itemRecod = (ItemRecod) recordSp.get(mCurrentfirstVisibleItem);
if (null == itemRecod) {
itemRecod = new ItemRecod();
}
return height - itemRecod.top;
}
class ItemRecod {
int height = 0;
int top = 0;
}
說明:
①設(shè)置標(biāo)題背景透明為完全透明
②設(shè)置監(jiān)聽ListView的滑動事件
③在onScroll里來獲取當(dāng)前Item的參數(shù)涉茧,設(shè)置到SparseArray中赴恨,然后調(diào)用getScrollY方法來計算滑動距離并返回參數(shù),然后根據(jù)距離來設(shè)置rlTitle的透明度伴栓。
總結(jié):就上面這點了嘱支,代碼不很多蚓胸,但實現(xiàn)了想要的效果。在擼代碼的過程中也發(fā)現(xiàn)了個小BUG除师,在快速滑動ListView的時候itemRecod會出現(xiàn)為null的情況沛膳。這個BUG出現(xiàn)是因為滑動過快,導(dǎo)致值還沒有設(shè)置進去汛聚,就在取值锹安,所以出現(xiàn)了null的情況,導(dǎo)致空指針錯誤倚舀。目前解決辦法是加了個if判斷null解決了這個小BUG叹哭,如果有好的解決方式請留言交流,謝謝~~
未經(jīng)本人允許禁止轉(zhuǎn)載痕貌,違者必究