Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

onEnter onLeave #274

Open
luyuan11233 opened this issue Nov 2, 2021 · 1 comment
Open

onEnter onLeave #274

luyuan11233 opened this issue Nov 2, 2021 · 1 comment

Comments

@luyuan11233
Copy link

luyuan11233 commented Nov 2, 2021

public class CommonCircleTabTitleView extends SimplePagerTitleView{
private int padding;

public CommonCircleTabTitleView(Context context) {
    super(context);
    init(context);
}

private void init(Context context) {
    padding = UIUtil.dip2px(context, 12);
    setPadding(padding, 0, padding, 0);
    LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
    lp.setMargins(UIUtil.dip2px(context, 16), 0, 0, 0);
    setLayoutParams(lp);
    setBackground(ContextCompat.getDrawable(getContext(),R.drawable.rect_shape_8_0d17171a));
}

@Override
public void onSelected(int index, int totalCount) {
    super.onSelected(index, totalCount);
}

@Override
public void onDeselected(int index, int totalCount) {
    super.onDeselected(index, totalCount);
}

@Override
public void onEnter(int index, int totalCount, float enterPercent, boolean leftToRight) {
    int color = ArgbEvaluatorHolder.eval(enterPercent, mNormalColor, mSelectedColor);
    setTextColor(color);
}

@Override
public void onLeave(int index, int totalCount, float leavePercent, boolean leftToRight) {
    int color = ArgbEvaluatorHolder.eval(leavePercent, mSelectedColor, mNormalColor);
    setTextColor(color);
}

}

103D35C905CD59BEA7646C83E9AF5C12

@luyuan11233
Copy link
Author

从全部滑动每日一币 这几个tab,来回滑,文字由黑色变成白色后会闪烁一下

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant