ColorChanged ViewPager 【code】
public class MyPagerListener implements ViewPager.OnPageChangeListener {
private int lastValue = -1;
private int redColor = Color.parseColor("#e51c23");
private int blueColor = Color.parseColor("#03a9f4");
private int greenColor = Color.parseColor("#259b24");
public MyPagerListener() {
super();
}
@Override
public void onPageSelected(int position) {
mViewPager.setCurrentItem(position);
page_position = position;
if (position == 1) {
mViewPager.setBackgroundResource(R.color.color_light_blue);
} else if (position == 2) {
mViewPager.setBackgroundResource(R.color.color_red);
} else if (position == 0) {
mViewPager.setBackgroundResource(R.color.color_green);
}
}
/*
*
* Pager ,finger Right to Left positionOffset 0 to 1
* positionOffsetPixels --
*
* Pager ,finger Left to Right positionOffset 1 to 0
* positionOffsetPixels ++
*/
@Override
public void onPageScrolled(int position, float positionOffset,
int positionOffsetPixels) {
if (positionOffset ==0) {
return;
}
if (lastValue > positionOffsetPixels) {
// Pager
if (position == 0) {
setPagerBg(blueColor, greenColor, 1-positionOffset);
} else if (position == 1) {
// Set like this will be right, but I don't know the reason
setPagerBg(redColor, blueColor, 1-positionOffset);
} else if (position == 2) {
Log.e("Right2", position + "");
setPagerBg(redColor, blueColor, 1-positionOffset);
}
} else if (lastValue < positionOffsetPixels) {
// Pager
if (position == 0) {
Log.e("Left0", position + "");
setPagerBg(greenColor, blueColor, positionOffset);
} else if (position == 1) {
Log.e("Left1", position + "");
setPagerBg(blueColor, redColor, positionOffset);
} else if (position == 2) {
Log.e("Left2", position + "");
setPagerBg(blueColor, redColor, positionOffset);
}
}
lastValue = positionOffsetPixels;
}
@Override
public void onPageScrollStateChanged(int position) {
}
public void setPagerBg(int color1, int color2, float ratio) {
mViewPager.setBackgroundColor(blendColors(color1, color2,
ratio));
}
/**
* Change color1 to color2 the ratio should increase!
*/
private int blendColors(int color1, int color2, float ratio) {
final float inverseRation = 1f - ratio;
float r = (Color.red(color2) * ratio)
+ (Color.red(color1) * inverseRation);
float g = (Color.green(color2) * ratio)
+ (Color.green(color1) * inverseRation);
float b = (Color.blue(color2) * ratio)
+ (Color.blue(color1) * inverseRation);
return Color.rgb((int) r, (int) g, (int) b);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.