在 ImageView 上使用 setBackgroundDrawable 方法时,Eclipse 给出以下错误:“View 类型中的方法 setBackgroundDrawable(Drawable) 不适用于参数 (int)”我的 ImageView 在 xml 中定义为:
<ImageView
android:id="@+id/ivCheck1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:src="@drawable/box"
android:contentDescription=" " />
在java中定义和实现为:
public class QuizList extends Activity implements View.OnClickListener {
ImageView check1;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.theView);
IntializeVariables();
IntializeChecks()
}
private void IntializeVariables() {
// TODO Auto-generated method stub
check1 = (ImageView) findViewById(R.id.ivCheck1);
}
private void IntializeChecks() {
// TODO Auto-generated method stub
boolean check = getPrefs.getBoolean("quiz1pref", false);
if (check == true) {
check1.setBackgroundDrawable(R.drawable.check);
}
}
任何人都知道为什么会出现此错误,或者如何解决?