Recycler View update few row every x sec

2.1k Views Asked by At

i have view pager . view pager have 3 section/tabs which have same fragments .fragment contains recycleview. in recyclerview i have custom layout for row . row contain textview and imagers . for textview its timer which should update every 1 sec . so for now i am using timer with fixe schedule task

 Timer timer = new Timer();
  timer.scheduleAtFixedRate( new TimerTask() {
        public void run() {

             textview.settext(updatedvalue);

         }
        }, 0, 1000);

i am doing this in bindViewHolder . but now problem is this timer is applicable for only few rows of recycle view . so in this it always call inrespect of that row is visible or not

so say i have total 30 rows and timer is applicable for 1st 4 row (this can be any value depend upon server value) . so how i can do this updating stuff for that row only . which my code is happing for all row so its taking to much memory

1

There are 1 best solutions below

0
On

Once I had solved my problem using this. Hope it will work

Handler timerHandler;
timerHandler = new Handler();

Runnable timerRunnable = new Runnable() {
    @Override
    public void run() {
        // Here you can update your adapter data
        yourAdapter.notifyDataSetChanged();
        timerHandler.postDelayed(this, 1000); //run every second
    }
};

timerHandler.postDelayed(timerRunnable, 1000); //Start timer after 1 sec