提示报错的是TextView,通过排除法找出错误TextView:
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="3"
android:autoLink="email|phone|web"
android:background="#F5F5DC"
android:textColor="#000000"
android:textSize="25dp" />
找出错误属性,同样通过排除法,可以发现当android:autoLink这个属性值为phone的时候会报错
找出错误原因,我发现当API高于19(即android 4.4)时,报错
而低于19是不报错。如果要修改到Properties。
那么既然android:autoLink要使用到email、phone、web多个,建议直接使用all。或者在Avitivity中代码配置(Linkify.PHONE_NUMBERS)。
随便选一个其他的Theme试试 应该就可以了 我以前也碰到过
有可能是主题的问题,用AndroidStudio常常会遇到这个问题,Eclipse应该差不多,就是APPTheme那边,点开换成别的主题试试