我想在我的 android 应用程序中实现 Pull to Refresh 功能,所以我实现了这个库:Android-PullToRefresh。但是,我似乎无法设置自定义样式以编程方式进行划分。
代码很简单:
list = (PullToRefreshListView) findViewById(R.id.list);
int[] colors = {0, 0xFF97CF4D, 0};
list.setDivider(new GradientDrawable(Orientation.RIGHT_LEFT, colors));
list.setDividerHeight(1);
但是,它抛出了这个错误:The method setDivider(GradientDrawable) is undefined for the type PullToRefreshListView
和The method setDividerHeight(int) is undefined for the type PullToRefreshListView.
我在这里做错了什么?