使用setBackgroundResource()时出错

时间:2012-02-19 19:37:57

标签: android textview

以下是我的脚本代码(部分代码):

r1c1text.setOnClickListener(new OnClickListener() {
        public void onClick(View v){

            v.setBackgroundColor(0xff000000);
            v.setBackgroundResource(R.id.xImg);
            Toast.makeText(Connect.this, "" + v, Toast.LENGTH_SHORT).show();
        }
    });

这是xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:background="#ffffff"
    android:layout_width="fill_parent"
    android:layout_height="80dip"
    android:orientation="horizontal"
    android:layout_below="@+id/connectImg"
>
<TextView android:id="@+id/r1c1text"
          android:layout_width="80dip"
          android:layout_height="wrap_content"
          android:layout_marginLeft="20dip"
          android:textColor="#000000"
          android:text="@string/class1"/>
<TextView android:id="@+id/r1c2text"
          android:layout_width="80dip"
          android:layout_height="wrap_content"
          android:layout_toRightOf="@+id/r1c1text"
          android:layout_marginLeft="20dip"
          android:textColor="#000000"
          android:text="@string/machine"/>
<TextView android:id="@+id/r1c3text"
          android:layout_width="80dip"
          android:layout_height="wrap_content"
          android:layout_toRightOf="@+id/r1c2text"
          android:layout_marginLeft="20dip"
          android:textColor="#000000"
          android:text="@string/ceiling"/>
</RelativeLayout>

Eclipse不会在v.setBackgroundResource(R.id.xImg);上给我一个错误,但是android会说"Force close"。我做错了什么?

1 个答案:

答案 0 :(得分:1)

哟文件名中包含大写字母,请使用全部小写ximg代替xImg