我在 Android 中有一个 EditText。想要旋转 90 度。我知道它可以通过动画类来完成。请看我怎么做?
问问题
1212 次
1 回答
2
旋转视图有很多方法。使用动画是一种选择。
EditText et = (EditText) findViewById(R.id.editText1);
Animation an = new RotateAnimation(0.0f, 90.0f, 100, 100);
an.setDuration(90);
an.setRepeatCount(0);
an.setFillAfter(true); // keep rotation after animation
et.setAnimation(an); //apply animation to EditText
于 2012-05-04T20:59:36.940 回答