作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在使用这个问题的代码: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/
我是一名优秀的程序员,十分优秀!