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.
ここで何が間違っていますか?