错误地我将我的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。为什么..???