private void notifyFocusChanged(int index, boolean hasFocus) {
   if (this.changeListener != null) {
     View child = getChildAt(index);
     changeListener.onFocusChanged(child, hasFocus);
   }
 }