5

我现在已经阅读了很多关于这方面的内容,并且我发现了如何使用较新的 ADT 的 switch 语句必须给出常量表达式的示例,但没有提到任何关于 @Inject 的内容。

这是我有问题的代码的示例。

 import roboguice.inject.InjectView;
 public abstract class YpListActivity extends GuiceListActivity 

     @InjectView(R.id.btnSearch)
     Button btnSearch;
     @InjectView(R.id.btnSpeech)
     View btnSpeech;
     @InjectView(R.id.etWhat)
     EditText etWhat;
     @InjectView(R.id.etWhere)
     EditText etWhere;
     @InjectView(R.id.tvIn)
     TextView tvIn;
     @InjectView(R.id.tvLocation)
     TextView tvLocation;
     @InjectView(R.id.tvCustom)
     private ToggleButton tvCustom;
     @InjectView(R.id.infoButton)
     private ImageView iconButton;

每次我尝试使用 @injectView(R.id.*) 之类的东西时,eclipse 都会抛出错误:

“注解属性 InjectView.value 的值必须是常量表达式。”

我什至尝试将其更改为:

     private static final int btnsrch = new Integer(R.id.btnSearch);

     @InjectView(btnsrch )
     TableRow btnSearch ;

“btnsrch”怎么不是一个常量表达式?

有谁知道如何解决这个问题?

4

1 回答 1

0

删除“私人”,它应该可以正常工作。

于 2015-01-22T02:27:10.543 回答