在Android Studio中导入Butterknife后,注释@InjectView无法正常工作?

时间:2015-07-23 10:22:46

标签: java android android-studio annotations butterknife

最近刚遇到了奶油刀。我在gradle(module:app)文件中添加了这行: 编译' com.jakewharton:butterknife:7.0.1'

它没有任何错误同步。我能够进口“刀具”.Butterknife'到我的类文件,导入usualyy去。但是无法导入butterknife.InjectView似乎没有?有什么建议吗?

3 个答案:

答案 0 :(得分:5)

Butterknife 7.0.0版本包括重命名注释动词的重大变化。这在更改日志中突出显示并反映在网站中。

Version 7.0.0 *(2015-06-27)*
----------------------------

 * `@Bind` replaces `@InjectView` and `@InjectViews`.
 * `ButterKnife.bind` and `ButterKnife.unbind` replaces `ButterKnife.inject` 
    and `ButterKnife.reset`, respectively.
...

https://github.com/JakeWharton/butterknife/blob/f65dc849d80f6761d1b4a475626c568b2de883d9/CHANGELOG.md

一个非常好的,最新的用法介绍是http://jakewharton.github.io/butterknife/

这是最简单的用法:

class ExampleActivity extends Activity {
  @Bind(R.id.title) TextView title;
  @Bind(R.id.subtitle) TextView subtitle;
  @Bind(R.id.footer) TextView footer;

  @Override public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.simple_activity);
    ButterKnife.bind(this);
    // TODO Use fields...
  }
}

答案 1 :(得分:4)

@InjectView已不再可用,已被@BindView取代。我们必须导入Butterknife依赖项才能使用注释。更多关于黄油刀的信息: - http://jakewharton.github.io/butterknife/

@BindView注释可以实现为: -

@BindView(R.id.button_id)

请注意,您需要从主要活动的ButterKnife.bind(this);方法调用onCreate()来启用Butterknife注释。这个实现的一个例子可能是: -

public class MainActivity extends AppCompatibilityActivity{
    @BindView(R.id.editText_main_firstName)
    EditText firstName;
    @BindView(R.id.editText_main_lastName)
    EditText lastName;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // Needs to be called to enable Butterknife annotations
        ButterKnife.bind(this);

    }
}

如果您在片段中使用Butterknife,请使用Butterknife.bind(this,view)视图作为片段视图,即: -

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View view = inflater.inflate(R.layout.fragment_other_product_category, container, false);
    ButterKnife.bind(this, view);
    return view;
}

答案 2 :(得分:3)

显然,[http_proxy] host = <proxy-server> no = <mercurial host ip address> 已被@InjectView取代。

此外,您必须在@Bind中致电ButterKnife.bind(this);

请参阅:http://jakewharton.github.io/butterknife/