Androidでpull to refreshができる便利なライブラリ「Android-PullToRefresh」を使っていたときのメモ。
デフォルトだとリストの右上に矢印(Indicator)が表示されておりますが、正直邪魔なので非表示にする方法を下記します。
■XMLで指定
<com.handmark.pulltorefresh.library.PullToRefreshListView xmlns:ptr="http://schemas.android.com/apk/res-auto" android:id="@+id/pull_refresh_list" android:layout_width="fill_parent" android:layout_height="fill_parent" ptr:ptrAnimationStyle="rotate" ptr:ptrShowIndicator="false" ←これ />
■javaソースで指定
PullRefreshListView.setShowIndicator(false);
※このライブラリ、webviewなどもpull to refresh出来るので大変便利です。ありがたく使わせてもらっています。
※因にほかのオプションはこの辺に載っています。
Please comment with your real name using good manners.