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

    今天成功完成了显示时间和里程的跑步方式,并且将原本的轨迹记录功能优化。明天准备实现将每次跑步的运动轨迹存储到手机上

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

    import android.view.View;
    import android.widget.LinearLayout;
    import android.widget.TextView;
    import androidx.annotation.CallSuper;
    import androidx.annotation.UiThread;
    import androidx.recyclerview.widget.RecyclerView;
    import butterknife.Unbinder;
    import butterknife.internal.DebouncingOnClickListener;
    import butterknife.internal.Utils;
    import com.haibin.calendarview.CalendarLayout;
    import com.haibin.calendarview.CalendarView;
    import com.james.motion.R;
    import java.lang.IllegalStateException;
    import java.lang.Override;

    public class HomeActivity_ViewBinding implements Unbinder {
    private HomeActivity target;

    private View view7f090195;

    private View view7f0900a4;

    private View view7f090122;

    private View view7f090121;

    @UiThread
    public HomeActivity_ViewBinding(HomeActivity target) {
    this(target, target.getWindow().getDecorView());
    }

    @UiThread
    public HomeActivity_ViewBinding(final HomeActivity target, View source) {
    this.target = target;

    View view;
    target.tvTitle = Utils.findRequiredViewAsType(source, R.id.tv_title, "field 'tvTitle'", TextView.class);
    view = Utils.findRequiredView(source, R.id.tv_month_day, "field 'mTextMonthDay' and method 'onViewClicked'");
    target.mTextMonthDay = Utils.castView(view, R.id.tv_month_day, "field 'mTextMonthDay'", TextView.class);
    view7f090195 = view;
    view.setOnClickListener(new DebouncingOnClickListener() {
    @Override
    public void doClick(View p0) {
    target.onViewClicked(p0);
    }
    });
    target.mTextYear = Utils.findRequiredViewAsType(source, R.id.tv_year, "field 'mTextYear'", TextView.class);
    target.mTextLunar = Utils.findRequiredViewAsType(source, R.id.tv_lunar, "field 'mTextLunar'", TextView.class);
    target.mTextCurrentDay = Utils.findRequiredViewAsType(source, R.id.tv_current_day, "field 'mTextCurrentDay'", TextView.class);
    target.mCalendarView = Utils.findRequiredViewAsType(source, R.id.calendarView, "field 'mCalendarView'", CalendarView.class);
    target.mRecyclerView = Utils.findRequiredViewAsType(source, R.id.recyclerView, "field 'mRecyclerView'", RecyclerView.class);
    target.mCalendarLayout = Utils.findRequiredViewAsType(source, R.id.calendarLayout, "field 'mCalendarLayout'", CalendarLayout.class);
    target.sport_achievement = Utils.findRequiredViewAsType(source, R.id.sport_achievement, "field 'sport_achievement'", LinearLayout.class);
    view = Utils.findRequiredView(source, R.id.fl_current, "method 'onViewClicked'");
    view7f0900a4 = view;
    view.setOnClickListener(new DebouncingOnClickListener() {
    @Override
    public void doClick(View p0) {
    target.onViewClicked(p0);
    }
    });
    view = Utils.findRequiredView(source, R.id.reRight, "method 'onViewClicked'");
    view7f090122 = view;
    view.setOnClickListener(new DebouncingOnClickListener() {
    @Override
    public void doClick(View p0) {
    target.onViewClicked(p0);
    }
    });
    view = Utils.findRequiredView(source, R.id.reBack, "method 'onViewClicked'");
    view7f090121 = view;
    view.setOnClickListener(new DebouncingOnClickListener() {
    @Override
    public void doClick(View p0) {
    target.onViewClicked(p0);
    }
    });
    }

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

    target.tvTitle = null;
    target.mTextMonthDay = null;
    target.mTextYear = null;
    target.mTextLunar = null;
    target.mTextCurrentDay = null;
    target.mCalendarView = null;
    target.mRecyclerView = null;
    target.mCalendarLayout = null;
    target.sport_achievement = null;

    view7f090195.setOnClickListener(null);
    view7f090195 = null;
    view7f0900a4.setOnClickListener(null);
    view7f0900a4 = null;
    view7f090122.setOnClickListener(null);
    view7f090122 = null;
    view7f090121.setOnClickListener(null);
    view7f090121 = null;
    }
    }
  • 相关阅读:
    html中<a>标签_top和_parent的区别
    HTML基础练习
    HTML <!DOCTYPE>标签 各版本对应的标签是否有无
    HTML <!DOCTYPE>标签
    doctype声明 过渡transitional 严格strict 框架frameset
    xhtml1-frameset.dtd
    【xunsearch】笔记
    python 根据文件创建时间排序
    wkhtmltopdf
    linux:/lib/libc.so.6: version `glibc_2.7′ not found【没有解决】采用新方法达到目的
  • 原文地址:https://www.cnblogs.com/PSLQYZ/p/13086731.html
Copyright © 2011-2022 走看看