我正在尝试使用以下方法将图片按钮ID转换为整数:
i1=(ImageButton)findViewById(R.id.imageButton1);
int hello = Integer.parseInt(i1.getText().toString().replaceAll("[\\D]", ""));
但它在getText()
中显示错误。
imageButton类中没有预定义的getText()
。
我该怎么做?
答案 0 :(得分:1)
ImageButton
是ImageView
子类,因此没有getText()
。如果您要设置并获取一些文字,则应使用继承自Button
TextView