错误地我将 editText 视图投射到 Textview 类对象,但我没有得到类投射异常
这是我的代码。让我解释一下,为什么这个?
在我的.xml文件中
<EditText
android:id="@+id/adduser_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/margin_10"
android:hint="@string/mob_no"
android:inputType="phone"
/>
在活动课程中。
TextView adduser_phone = (TextView) findViewById(R.id.adduser_phone);
这里没有打过类castexception。为什么.. ???