android只title背景色隨着滾動漸變顏色

	scrollView.setScrollViewListener(new ScrollViewListener() {
			@Override
			public void onScrollChanged(MallHomePageScrollView scrollView, int x, int y, int oldx, int oldy)
				{
					float scale = (float) y / (float) backgroundHeight;
					newAlpha = scale * 255.000f;
					if (newAlpha > 255) {
						newAlpha = 255.00f;
					}
					titleRl.getBackground().setAlpha((int) newAlpha);
				}
		});

backgroundHeight = Tools.dip2px(UserDetailAct.this, 251);

發佈了68 篇原創文章 · 獲贊 38 · 訪問量 25萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章