在 butterknife 中绑定字符串数组
Bind array of strings in the butterknife
我正在尝试使用 butterknife
. But seems that there is no way (but in processor 绑定字符串数组,有一种绑定数组的方法)。
这是我的代码:
strings.xml
<string-array name="test_strings">
<item>VK</item>
<item>Facebook</item>
<item>Twitter</item>
<item>Instagram</item>
<item>Google plus</item>
<item>Google mail</item>
</string-array>
主要活动
@Bind(R.string.test_strings)
protected String [] mStrings;
五分钟前 Butterknife 8.0.0 是 released。
R.string.test_array
改为R.array.test_array
和@Bind
到@BindArray
我正在尝试使用 butterknife
. But seems that there is no way (but in processor 绑定字符串数组,有一种绑定数组的方法)。
这是我的代码:
strings.xml
<string-array name="test_strings">
<item>VK</item>
<item>Facebook</item>
<item>Twitter</item>
<item>Instagram</item>
<item>Google plus</item>
<item>Google mail</item>
</string-array>
主要活动
@Bind(R.string.test_strings)
protected String [] mStrings;
五分钟前 Butterknife 8.0.0 是 released。
R.string.test_array
改为R.array.test_array
和@Bind
到@BindArray