1

的Honeycomb以上我可以很容易地旋轉度一個TextView與此:TextView的旋轉對薑餅

android:rotation(90) 

但這不起作用低於蜂窩,在薑餅和Froyo的。

我可以用什麼來代替?

回答

0

您可以在anim文件夾中聲明旋轉動畫

下面的代碼段將幫助您。

textanim.xml

<?xml version="1.0" encoding="utf-8"?> 
    <rotate xmlns:android="http://schemas.android.com/apk/res/android" 
     android:fromDegrees="10" android:toDegrees="90" android:pivotX="50%" 
     android:duration="100"> 
    </rotate> 

內部代碼

TextView tv = (TextView)findViewById(R.id.text); 
tv.setAnimation(AnimationUtils.loadAnimation(this,R.anim.textanim)); 
+0

是有可能做到這一點的時候TextView的是一個工具? – Jakob