J'utilise l'ActionBar. J'aimerais avoir un spinner de progression de rafraîchissement dans la barre de titre, si je le mets en rotation - sinon cachez-le. Est-ce possible?:
// My menu has a refresh item, but it shouldn't be visible on the
// actionbar unless it's spinning.
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/menu_refresh"
android:title="@string/refresh"
android:icon="@drawable/ic_action_refresh" />
</menu>
...
// When I need to show some work being done on my activity,
// can I somehow now make the spinner associated with the
// refresh item become visible on the action bar?
getActionBarHelper().setRefreshActionItemState(true);
Je ne le veux pas sur l'ActionBar à moins qu'il ne soit "en cours" / en rotation.
Merci