我TextView
在我的适配器类中使用,当我单击列表项时,我在列表项TexView
旁边显示一个。但我需要TextView
在 2 秒后隐藏它..?
我使用Timer
了功能,但它在适配器类中不起作用。
请帮我找到一个好的解决方案。
这是我的代码:
static class ViewHolder {
TextView name;
TextView time;
ImageView check;
TextView full_name;
}
public static class Clockin_Adapter extends ArrayAdapter<DataItem> {
.
.
.
.
//in getView() method..
holder.name.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
holder.full_name.setVisibility(View.VISIBLE);
holder.full_name.setText(employeeList[position]);
return false;
}
});
// need to hide **holder.full_name** textView after x seconds..
}