View
を90度回転させて内容を更新し、再び90度回転させたいと思っています。回転回転中にコンテンツを表示して更新する
ObjectAnimator anim1 = (ObjectAnimator) AnimatorInflater.loadAnimator(getActivity().getApplicationContext(), R.animator.flip_animator);
anim1.setTarget(v);
anim1.setDuration(1000);
anim1.start();
ImageView box = (ImageView) v.findViewById(R.id.box);
Bitmap bg = BoxUtils.getBoxBg(boxSize, boxMargin, Color.RED);
box.setImageBitmap(bg);
anim1.setTarget(v);
anim1.setDuration(1000);
anim1.start();
のxml:
<objectAnimator xmlns:android="http://schemas.android.com/apk/res/android"
android:valueFrom="0" android:valueTo="90" android:propertyName="rotationY" >
</objectAnimator>
しかしその作業が、そのことは次の回転コードよりも前に、でも私は書かれていた更新用コードを次の90度を回転させる前に、その色を変えます。 ヘルプがありますか?
だからあなたのことわざが90度、変色回転が何であるかを、再度回転させますか? –
はい、これは私が欲しいものです。 –