• 第一阶段冲刺第六天


    import android.support.annotation.CallSuper;
    import android.support.annotation.UiThread;
    import android.view.View;
    import android.widget.TextView;
    import butterknife.Unbinder;
    import butterknife.internal.Utils;
    import com.example.myapplication.R;
    import java.lang.IllegalStateException;
    import java.lang.Override;
    
    public class HistoryContentFragment_ViewBinding implements Unbinder {
      private HistoryContentFragment target;
    
      @UiThread
      public HistoryContentFragment_ViewBinding(HistoryContentFragment target, View source) {
        this.target = target;
    
        target.tvContent = Utils.findRequiredViewAsType(source, R.id.tv_content, "field 'tvContent'", TextView.class);
      }
    
      @Override
      @CallSuper
      public void unbind() {
        HistoryContentFragment target = this.target;
        if (target == null) throw new IllegalStateException("Bindings already cleared.");
        this.target = null;
    
        target.tvContent = null;
      }
    }
  • 相关阅读:
    mysql的四种隔离
    mysql-事物
    Mysql数据备份
    线程池
    springboot整合log4j2
    springboot项目部署
    数组去重
    倒叙输出算法
    使用LLDB和debugserver对ios程序进行调试
    Linux使用pyinstaller 编译py成可执行程序
  • 原文地址:https://www.cnblogs.com/zhang188660586/p/11061919.html
Copyright © 2020-2023  润新知