在我的片段中,我有一个ListView,我想添加FOOTERVIEW我已经用api 21测试过了,但是可以使用api26!
View v = inflater.inflate(R.layout.list, container, false);
loadView = inflater.inflate(R.layout.footer,container,false);
所以当我滚动列表的和时
listview.addFooterView(View);
我有错误
android.widget.RelativeLayout$LayoutParams cannot be cast to android.widget.AbsListView$LayoutParams
at android.widget.ListView.removeUnusedFixedViews(ListView.java:2135)
有我的View页脚xml文件
<ProgressBar
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>