public View getView(int position, view convertView, ViewGroup parent){
.......
   if(bisStart){
       convertView.findViewById(R.id.item).startAnimation(shake);
         
  }
 else{
    convertView.findViewById(R.id.item).clearAnimation();
    if(shake.hasStarted()){
       shake.cancel();
      }    }  
   ....
}android