当我将我的Android应用程序迁移到4.4时,我注意到一个非常奇怪的情况。突然,我的HUD组件中的旋转动画开始闪烁并且无法正常工作。我试图像这样旋转对象:
rotateAnimation = new RotateAnimation(180, 360, Animation.RELATIVE_TO_SELF,
0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
rotateAnimation.setDuration(1000);
rotateAnimation.setRepeatCount(Animation.INFINITE);
rotateAnimation.setRepeatMode(Animation.RESTART);
和
public static void rotate(final View view) {
if(view.getAnimation() != null) {
view.getAnimation().cancel();
view.clearAnimation();
}
view.setAnimation(rotateAnimation);
view.getAnimation().start();
}
上面的代码在任何其他非嵌套视图对象上使用时效果很好,但是当用于包含在include标记中的ImageView
时,它根本不起作用。奇怪的是,在同一个上下文中调用的同一个对象上的其他动画也可以工作。这是一个4.4 bug吗?我包括如下视图:
<include
android:layout_width="fill_parent"
android:layout_height="wrap_content"
layout="@layout/view_trip_hud"
android:layout_gravity="bottom"/>
HUD组件本身看起来像这样:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:alpha="0.6"
android:background="@drawable/background_texture_dark"
tools:context=".app.ui.fragment.TripSummaryFragment"
android:gravity="center_vertical|left"
android:id="@+id/relativeLayoutHUDContainer">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical"
android:padding="@dimen/ui_default_element_margin">
<ImageView
android:id="@+id/imageViewTrackingStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/status_preparing"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
<TextView
android:id="@+id/textViewDriveQuality"
style="@style/HUDFont"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="@string/track_status_inactive"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true" />
</LinearLayout>
<view
android:id="@+id/linearLayoutHUDCurrentSpeed"
android:layout_width="wrap_content"
android:layout_height="40dp"
class="pl.com.infinitysoftware.carassistant.util.ui.HUDBlockLayout"
style="@style/HUDBlock"
android:layout_alignParentRight="true"
android:layout_marginLeft="@dimen/ui_min_element_margin">
<TextView
android:id="@+id/textViewCurrentSpeed"
style="@style/HUDFont"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="-,-Km/h"
android:clickable="false"
android:layout_gravity="center_vertical"
android:gravity="center_vertical"/>
</view>
<view
class="pl.com.infinitysoftware.carassistant.util.ui.HUDBlockLayout"
style="@style/HUDBlock"
android:id="@+id/linearLayoutHUDCurrentDistance"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_alignParentTop="true"
android:layout_toLeftOf="@+id/linearLayoutHUDCurrentSpeed"
android:layout_marginLeft="@dimen/ui_min_element_margin">
<TextView
style="@style/HUDFont"
android:id="@+id/textViewCurrentDistance"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:text="25 Km"
android:clickable="false"
android:layout_gravity="center_vertical"
android:gravity="center_vertical" />
</view>
</RelativeLayout>
答案 0 :(得分:12)
我遇到了类似的问题:
尝试设置您正在应用动画的视图(在动画制作期间):
view.setLayerType(View.LAYER_TYPE_HARDWARE,null);
//And then apply the animation
view.startAnimation(myAnimation);
别忘了把它放在你的清单中:
android:hardwareAccelerated="true"
答案 1 :(得分:-1)
我找到了解决这个问题的方法。 Object Animator非常适合我。
ObjectAnimator floatingButtonAnimator = ObjectAnimator.ofFloat(floatingActionButton,
ANIMATION_NAME, ANIMATION_STARTING_DEGREE, ANIMATION_ENDING_DEGREE);
floatingButtonAnimator.setDuration(ANIMATION_DURATION).addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationStart(Animator animation) {
super.onAnimationStart(animation);
}
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
exchangeValues();
}
});
floatingButtonAnimator.start();