私のレイアウトでは、一連のタイル (Windows Phone のホーム画面に似たもの) があります。タイルを反転して、より多くのコンテンツを表示しようとしています。カードの反転を見てみましたが、フラグメント全体が反転します。レイアウト全体の一部を反転させたいです。オブジェクトアニメーターを使用して回転させてみました。これが私のコードです..
View v = findViewById(R.id.iotd_relative);
ObjectAnimator animation = ObjectAnimator.ofFloat(v, "rotationY", 0.0f, 360f);
animation.setDuration(3600);
animation.setRepeatCount(ObjectAnimator.INFINITE);
animation.setInterpolator(new AccelerateDecelerateInterpolator());
animation.start();
反転時に別のレイアウトを呼び出す可能性はありますか?