5

この質問のコードを使用しています: Animated Icon for ActionItem to animate my refresh ActionBarButton. スタイルが正しくないように見えることを除けば、問題なく動作します。アイテムをクリックすると、回転が始まりますが、数ピクセル「ジャンプ」した後でのみです。ImageViewのスタイルは、メニュー項目のスタイルとは異なるようです。

アイテムは次のように定義されます。

<item
    android:id="@+id/action_refresh"
    android:orderInCategory="100"
    android:icon="@drawable/ic_menu_refresh"
    android:showAsAction="ifRoom"

    <!-- added this myself, didn't have any effect -->
    style="@android:style/Widget.ActionButton"  
    android:title="@string/action_refresh"/>

などImageViewなど:

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:contentDescription="@string/action_refresh"
    android:src="@drawable/ic_menu_refresh"
    style="@android:style/Widget.ActionButton" />

ImageViewローテーションで、またはその逆に一致するようにメニュー項目のスタイルを設定するにはどうすればよいですか?

4

3 に答える 3

9

Viewアニメーション化されていないアイテムも同じになるように設定することで解決策を見つけました。でmenu.xml

<item
    android:id="@+id/action_refresh"
    android:orderInCategory="100"
    android:icon="@drawable/ic_menu_refresh"
    android:actionLayout="@layout/refresh_action_view"
    android:showAsAction="ifRoom"
    style="@android:style/Widget.ActionButton"
    android:title="@string/action_refresh"/>

次に、onCreateOptionsMenuメンバー変数でビューをフェッチし、onclick ハンドラーをアタッチします。

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.orders, menu);
    final Menu m = menu;
    refreshItem = menu.findItem(R.id.action_refresh);
    refreshItem.getActionView().setOnClickListener(new OnClickListener() {
                    @Override
                    public void onClick(View v) {   
                        m.performIdentifierAction(refreshItem.getItemId(), 0);
                    }
            });
    return true;
}

onCreate、アニメーションをロードします。

    rotation = AnimationUtils.loadAnimation(this, R.anim.clockwise_refresh);
    rotation.setRepeatCount(Animation.INFINITE);

最後に、これを呼び出してアニメーションを開始します。

refreshItem.getActionView().startAnimation(rotation);

これを停止するには:

refreshItem.getActionView().clearAnimation();
于 2013-10-07T13:02:46.507 に答える