码迷,mamicode.com
首页 > 其他好文 > 详细

HorizontalScrollView里的标签改变颜色(今日头条里的功能仿照)

时间:2016-03-21 09:17:36      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:

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里的标签改变颜色(今日头条里的功能仿照)

标签:

原文地址:http://www.cnblogs.com/zhengyanyan/p/5300516.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!