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

setTag,getTage复用

时间:2018-01-21 19:20:50      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:ide   bbb   etc   listener   ogr   count()   set   length   log   

radioButtons = new RadioButton[rgMain.getChildCount()];  //遍历RadioGroup
for (int i = 0; i < radioButtons.length; i++) {
radioButtons[i] = (RadioButton) rgMain.getChildAt(i);
radioButtons[i].setTag(i);                //设置tag
radioButtons[i].setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton compoundButton, boolean b) {
if (b)
//切换ViewPager页面
showFragment((int) compoundButton.getTag());    //获取tag
}
});
}

setTag,getTage复用

标签:ide   bbb   etc   listener   ogr   count()   set   length   log   

原文地址:https://www.cnblogs.com/dubo-/p/8324738.html

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