android 一个奇怪的bug

今天做一个android例子, 程序本来运行好好的, 可是后来不知道为什么会有这个异常, 具体如下:

 我 layout.xml文件里,

有一个linearLayout代码

=============

<LinearLayout
   android:layout_width="fill_parent"
   android:layout_height="wrap_content"
   android:id="@+id/serInfoLL"
  >  

=============

当我在activity里, 用 (LinearLayout)findViewById(R.id.serInfoLL)时,

 会报ClassCastException,

而直接打印 findViewById(R.id.serInfoLL) 居然是Button,

可是我的明明是LinearLayout 对象, 而且 xml 文件里ID也没重复, 真的够郁闷的,

 

不知道哪位可以帮忙解释下这是为什么........?

你可能感兴趣的:(android)