Try this..
Your setting setBackgroundResource
that's for android:background="@drawable/icon_on"
not for android:src="@drawable/icon_on"
background and src both are different use
imageButton.setImageResource(0);
EDIT
imageButton.setImageDrawable(null);