1

在 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);
    }
}

任何人都知道为什么会出现此错误,或者如何解决?

4

3 回答 3

3
check1.setBackgroundDrawable(R.drawable.check);

这是错误。请改成

check1.setBackgroundResource(R.drawable.check);

或者

check1.setBackgroundDrawable(getResources().getDrawable(R.drawable.check));
于 2013-12-10T17:30:32.713 回答
0

尝试这个:

check1.setBackgroundDrawable(getResources().getDrawable(R.drawable.check));
于 2013-12-10T17:30:47.560 回答
0

代替 :-

check1.setBackgroundDrawable(R.drawable.check);

用这个 :-

check1.setImageResource(R.drawable.check);
于 2013-12-10T17:30:59.653 回答