Closed 401885064 closed 8 years ago
可以添加其它widget的。 之所以失效了,是因为CustListView对是否滑动到底部的判断失效了。 你滑动到底部,断点调试一下看看。
// if (Math.abs(firstView.getTop() - getTop()) < 2) {// 原先旧的 // resultValue = true; // }
if (Math.abs(firstView.getTop()) < 10) {//2015-01-13 修改后--解决不能添加其他控件的bug
resultValue = true;
}
临时的解决方法, 不知日后会不会有bug, 哈哈哈。。。
下面是我的布局:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/page_backage_color" android:orientation="vertical">
发现添加一个textview后,CustListView失效了