每次我将控件移动到 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 查找/检测控件而不是其在布局中的位置。