我的应用程序抛出了一个奇怪的异常。LogCat 输出显示:
java.lang.ClassCastException: android.widget.FrameLayout cannot be converted to android.widget.TextView.
此异常是由以下行引起的:
TextView distance = (TextView) findViewById(R.id.distance);
R.id.distance 绝对是指 TextView ,我不知道如何抛出这个异常。所以我的问题是,你们中是否有人遇到过类似的问题并且知道解决此问题的方法。