HorizontalScrollView里的标签改变颜色(今日头条里的功能仿照)
Posted zyy明天你好
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HorizontalScrollView里的标签改变颜色(今日头条里的功能仿照)相关的知识,希望对你有一定的参考价值。
private void selectTab(int position) {
// TODO Auto-generated method stub
for (int i = 0; i < hori_lin.getChildCount(); i++) {
TextView childAt = (TextView) hori_lin.getChildAt(position);
// 字体的长度;
int k = childAt.getMeasuredWidth();
// 从字体到屏幕左边的距离;
int l = childAt.getLeft();
int s = l + k / 2 - mscreenwidth / 2;
horizontalScrollView.smoothScrollTo(s, 0);
TextView child = (TextView) hori_lin.getChildAt(i);
if (position == i) {
child.setTextColor(Color.RED);
} else {
child.setTextColor(Color.BLACK);
}
}
}
以上是关于HorizontalScrollView里的标签改变颜色(今日头条里的功能仿照)的主要内容,如果未能解决你的问题,请参考以下文章
android 使用HorizontalScrollView 实现标题带动内容左右切屏