アクション バー ボタンの 2 つの異なるプログレス バー スタイルを試してみました。
refreshMenuItem.setActionView(R.layout.actionbar_indeterminate_progress);
actionbar_indeterminate_progress.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?attr/actionButtonStyle" >
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@android:style/Widget.ProgressBar.Small" />
</LinearLayout>
Widget.ProgressBar.SmallとWidget.ProgressBar.Small.Inverseを試しました。ただし、視覚的な違いはわかりません。
Widget.ProgressBar.Small
Widget.ProgressBar.Small.Inverse
色の反転があると思いますが、ありません。何か不足していますか?