java.lang.BootstrapMethodError: Exception from call site #1 bootstrap method

问题描述:

在程序中使用了下面的语句实现绑定Java和Layout 

View view = View.inflate(getContext(), R.layout.video_play, this);
ButterKnife.bind(this,view);

但是运行时总出错,报错如下:

 Caused by: java.lang.BootstrapMethodError: Exception from call site #1 bootstrap method
        at butterknife.internal.DebouncingOnClickListener.(DebouncingOnClickListener.java:12)

按照提示点开了提示

package butterknife.internal;

import android.view.View;

/**
 * A {@linkplain View.OnClickListener click listener} that debounces multiple clicks posted in the
 * same frame. A click on one button disables all buttons for that frame.
 */
public abstract class DebouncingOnClickListener implements View.OnClickListener {
  static boolean enabled = true;

  private static final Runnable ENABLE_AGAIN = () -> enabled = true;

  @Override public final void onClick(View v) {
    if (enabled) {
      enabled = false;
      v.post(ENABLE_AGAIN);
      doClick(v);
    }
  }

  public abstract void doClick(View v);
}

其中 private static final Runnable ENABLE_AGAIN = () -> enabled = true 使用了Java8的新特性。



解决方法:

build.gradle中添加以下代码:

android {

   ······

    compileOptions{
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

 }

重新编译问题就解决了!

 



个人网站:分享客(https://sharerdiary.com/)
这个网站经常分享一些免费视频、免费音乐、实用工具和各种福利,感兴趣的朋友可以看看!

您的关注和点赞是我分享的动力,如有帮助请勿吝啬!ヽ( ̄▽ ̄)ノ



 

你可能感兴趣的:(Android疑难杂症,Exception,from,call,site,bootstrap,method,site,#1,bootstrap,method,call,site,#1,bootstrap,method)