java.lang.UnsupportedOperationException: addView(View, LayoutParams) is not supported in AdapterView
AdapterView的子类比如ListView不能在layout中添加子布局,或者在代码中添加子布局。//..otherattributes>
//otherviews
123这种布局方式,是会报错的。正确做法://..otherattributes/>
//otherviews12也不能通过addView方法listViewReference.addView(anotherView);//do