在Android中将我的EditText旋转90度

时间:2012-05-04 20:41:48

标签: android android-edittext rotation

我在Android中有一个EditText。想要旋转90度。我知道它可以通过Animation类完成。请发现我该怎么做?

1 个答案:

答案 0 :(得分: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