2012-05-04 50 views

回答

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