您的位置:首页 > 运维架构

Android开发:UnsupportedOperationException: addView(View, LayoutParams) is not supported in AdapterView

2015-11-30 21:45 585 查看
出现这个异常,是因为你的AbsLisView(ListView,GridView等)标签间加了其他的控件,比如,下面的代码就会报这个错:

<ListView
        android:id="@+id/mainRatePicView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/wordview_mainrate"
        android:layout_marginTop="@dimen/appendrate_item_mainrate_margin_top"
        android:listSelector="@color/transparent">
    <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" />
</ListView>

在ListView标签间加了TextView标签
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: