import android.support.annotation.CallSuper; import android.support.annotation.UiThread; import android.view.View; import android.widget.ImageView; import butterknife.Unbinder; import butterknife.internal.Utils; import com.example.myapplication.R; import com.example.myapplication.myCenter.nav_bar; import java.lang.IllegalStateException; import java.lang.Override; public class MineFragment_ViewBinding implements Unbinder { private MineFragment target; @UiThread public MineFragment_ViewBinding(MineFragment target, View source) { this.target = target; target.hBack = Utils.findRequiredViewAsType(source, R.id.h_back, "field 'hBack'", ImageView.class); target.hHead = Utils.findRequiredViewAsType(source, R.id.h_head, "field 'hHead'", ImageView.class); target.sex = Utils.findRequiredViewAsType(source, R.id.sex, "field 'sex'", nav_bar.class); target.name = Utils.findRequiredViewAsType(source, R.id.name, "field 'name'", nav_bar.class); target.version = Utils.findRequiredViewAsType(source, R.id.version, "field 'version'", nav_bar.class); target.password = Utils.findRequiredViewAsType(source, R.id.password, "field 'password'", nav_bar.class); } @Override @CallSuper public void unbind() { MineFragment target = this.target; if (target == null) throw new IllegalStateException("Bindings already cleared."); this.target = null; target.hBack = null; target.hHead = null; target.sex = null; target.name = null; target.version = null; target.password = null; } }