如何将图像按钮的ID转换为Interger?

时间:2016-04-05 10:09:39

标签: android

我正在尝试使用以下方法将图片按钮ID转换为整数:

i1=(ImageButton)findViewById(R.id.imageButton1);
int hello = Integer.parseInt(i1.getText().toString().replaceAll("[\\D]", ""));

但它在getText()中显示错误。 imageButton类中没有预定义的getText()

我该怎么做?

1 个答案:

答案 0 :(得分:1)

ImageButtonImageView子类,因此没有getText()。如果您要设置并获取一些文字,则应使用继承自Button

TextView