为什么控制器在我移动到另一个位置后没有被检测到?

时间:2013-01-01 05:58:03

标签: android android-layout

每次将控件移动到Android版面创建器中的新位置后,都无法在代码中键入控件。

布局XML 之前重新定位:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    tools:context="relax.android.classes.DishesArrayAdapter" >

         <Button
            android:id="@+id/btnDone"
            android:layout_width="75dp"
            android:layout_height="match_parent"
            android:background="@android:drawable/btn_default"
            android:contentDescription="@string/ibtnValueDone" />

        <TextView
            android:id="@+id/tvName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/tvValueName"
            android:textSize="12sp" />

    </LinearLayout>

布局XML 重新定位后:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    tools:context="relax.android.classes.DishesArrayAdapter" >

         <TextView
            android:id="@+id/tvName"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/tvValueName"
            android:textSize="12sp" />

         <Button
            android:id="@+id/btnDone"
            android:layout_width="75dp"
            android:layout_height="match_parent"
            android:background="@android:drawable/btn_default"
            android:contentDescription="@string/ibtnValueDone" />

    </LinearLayout>

代码示例:

TextView tvName = (TextView) findViewById(R.id.tvName);
Button btnDone = (Button) findViewById(R.id.btnDone);

在我调试控件时重新定位控件后,它会抛出java.lang.ClassCastException: android.widget.Button cannot be cast to android.widget.TextView

我想知道怎么会出错呢,因为view正在通过ID查找/检测控件而不是它在布局中的位置。

2 个答案:

答案 0 :(得分:1)

在调试之前清理项目。所以你不会得到这个类强制转换异常。

答案 1 :(得分:1)

清理项目&amp;重新构建项目,然后尝试调试。所以你不会得到这个类强制转换异常。