gpt4 book ai didi

android - 动画开始时的动画菜单项 "jumps"

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:05:56 24 4
gpt4 key购买 nike

我正在使用这个问题的代码:Animated Icon for ActionItem为我的刷新 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,或者相反?

最佳答案

我通过将非动画项目的 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 中,我在成员变量中获取 View ,并附加一个 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();

关于android - 动画开始时的动画菜单项 "jumps",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19139775/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com