zoukankan      html  css  js  c++  java
  • 第一阶段冲刺第七天

    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;
      }
    }
  • 相关阅读:
    mysql数据库的相关练习题及答案
    数据库一
    python的协程
    jquery的常用知识点
    diehard–让你的程序更健壮
    迷宫塔生成工具
    编程解决谁是凶手的问题
    ClojureScript实现xpath定位器生成-1
    使用ClojureScript进行chrome扩展开发
    AES CBC模式下的Padding Oracle解密
  • 原文地址:https://www.cnblogs.com/zhang188660586/p/11061925.html
Copyright © 2011-2022 走看看