使用baseadapter出现
java.lang.ClassCastException: android.widget.RelativeLayout$LayoutParams cannot be cast to android.widget.AbsListView$LayoutParams
错误,一般是你自己的实现baseadapter的方法中
public View getView(int arg0, View arg1, ViewGroup arg2) {
// TODO Auto-generated method stub
RelativeLayout view7 = ( RelativeLayout ) LayoutInflater
.from(MainActivity.this).inflate(
R.layout. second , null);
// TODO Auto-generated method stub
RelativeLayout view7 = ( RelativeLayout ) LayoutInflater
.from(MainActivity.this).inflate(
R.layout. second , null);
这是在你的second布局文件中与这不对应 ,如果你布局文件中用的linearlayout,然后这边也得用linearlayout,如果用的是relativelayout,这边也用relativelayout。