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.io.outputstream.PrintStream:打印流
    Codeforces 732F. Tourist Reform (Tarjan缩点)
    退役了
    POJ 3281 Dining (最大流)
    Light oj 1233
    Light oj 1125
    HDU 5521 Meeting (最短路)
    Light oj 1095
    Light oj 1044
    HDU 3549 Flow Problem (dinic模版 && isap模版)
  • 原文地址:https://www.cnblogs.com/PSLQYZ/p/13086807.html
Copyright © 2011-2022 走看看