zoukankan      html  css  js  c++  java
  • 觅踪19

    整合的时候因为编码习惯不一样,导致进度缓慢,这是Main.activity代码

    // Generated code from Butter Knife. Do not modify!
    package com.james.motion.ui.activity;

    import android.view.View;
    import android.widget.Button;
    import android.widget.TextView;
    import androidx.annotation.CallSuper;
    import androidx.annotation.UiThread;
    import butterknife.Unbinder;
    import butterknife.internal.DebouncingOnClickListener;
    import butterknife.internal.Utils;
    import com.james.motion.R;
    import java.lang.IllegalStateException;
    import java.lang.Override;

    public class SportsActivity_ViewBinding implements Unbinder {
    private SportsActivity target;

    private View view7f09005b;

    @UiThread
    public SportsActivity_ViewBinding(SportsActivity target) {
    this(target, target.getWindow().getDecorView());
    }

    @UiThread
    public SportsActivity_ViewBinding(final SportsActivity target, View source) {
    this.target = target;

    View view;
    target.tvSportMile = Utils.findRequiredViewAsType(source, R.id.tv_sport_mile, "field 'tvSportMile'", TextView.class);
    target.tvSportCount = Utils.findRequiredViewAsType(source, R.id.tv_sport_count, "field 'tvSportCount'", TextView.class);
    target.tvSportTime = Utils.findRequiredViewAsType(source, R.id.tv_sport_time, "field 'tvSportTime'", TextView.class);
    view = Utils.findRequiredView(source, R.id.btStart, "field 'btStart' and method 'onViewClicked'");
    target.btStart = Utils.castView(view, R.id.btStart, "field 'btStart'", Button.class);
    view7f09005b = view;
    view.setOnClickListener(new DebouncingOnClickListener() {
    @Override
    public void doClick(View p0) {
    target.onViewClicked();
    }
    });
    }

    @Override
    @CallSuper
    public void unbind() {
    SportsActivity target = this.target;
    if (target == null) throw new IllegalStateException("Bindings already cleared.");
    this.target = null;

    target.tvSportMile = null;
    target.tvSportCount = null;
    target.tvSportTime = null;
    target.btStart = null;

    view7f09005b.setOnClickListener(null);
    view7f09005b = null;
    }
    }
  • 相关阅读:
    算法视频库下载常用网址(转载)
    Python study 1
    $X-Real-Ip和$X-Forwarded-For的区别
    python装饰器
    python迭代器和生成器
    python函数动态参数详解
    python常用模块
    python 正则re模块
    pycharm5新版注册
    老男孩python自动化运维作业2
  • 原文地址:https://www.cnblogs.com/PSLQYZ/p/13086807.html
Copyright © 2011-2022 走看看