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;
    }
    }
  • 相关阅读:
    java学习笔记(2)
    java学习笔记(1)
    python3自用utils(备忘录)
    关于ubuntu环境的一切
    vim中F5编译运行代码
    kafka入门教程
    python中datetime的常用功能
    Hbase实战教程(转)
    根据时间戳(毫秒)计算年龄
    如何在Debian 10上安装Python 3.8
  • 原文地址:https://www.cnblogs.com/PSLQYZ/p/13086807.html
Copyright © 2011-2022 走看看