在ImageButton标记中保存和检索int

时间:2016-05-18 21:54:28

标签: android android-layout android-view

我需要将整数保存到ImageButton的标记中。但是每当我尝试读回数据时,我都会遇到崩溃。

保存,例如,

tokenBtn.setTag(View.INVISIBLE);

然后阅读我做

Integer tag = (Integer) tokenBtn.getTag();

以下是getTag()

的错误
 java.lang.ClassCastException: com.bumptech.glide.request.GenericRequest cannot be cast to java.lang.Integer

1 个答案:

答案 0 :(得分:2)

您的代码看起来不错。

我怀疑问题是Glide库使用其GenericRequest对象覆盖整数以加载图像。

我想出了ClassCastException错误消息的想法。