0

我有以下屏幕:

我正在尝试旋转文本,然后在此按钮上设置文本。

为此,我有以下布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:layout_width="fill_parent"
android:orientation="horizontal"
android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android"
>
<SurfaceView android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:id="@+id/surface_camera" />


<FrameLayout 
android:layout_width="60dip"
android:layout_height="fill_parent"
>
  <Button           android:layout_width="60dip"
                     android:id="@+id/btnPhoto"
                    android:layout_height="fill_parent"/>

 <TextView 
                    android:layout_width="60dip"
                     android:id="@+id/textview"
                     android:textColor="#000000"
                    android:layout_height="fill_parent"
                  />

</FrameLayout>
 </RelativeLayout>

然后我尝试使用动画来旋转我的文本:

文件:res/anim/myanim:

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

然后我做onCreate()

te = (TextView) findViewById(R.id.textview);
      te.setText(t);

     RotateAnimation ranim = (RotateAnimation)AnimationUtils.loadAnimation(this, R.anim.myanim);
     ranim.setFillAfter(true);
    te.setAnimation(ranim);

但不幸的是,我的按钮上没有出现任何文字。有人有什么想法吗?

4

1 回答 1

2

创建一个名为 anim 的文件夹,然后创建 xml 文件并将其添加到 xml 下面

<rotate 
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="0" 
android:toDegrees="360" 
android:pivotX="50%"
android:pivotY="50%"
 android:repeatCount="infinite" 
 android:duration="1200" />

然后在定义 textView 的 xml 中的 textview 上添加以下行。

android:interpolator="@anim/linear_interpolator" 

最后应用下面的代码...

Animation logoMoveAnimation = AnimationUtils.loadAnimation(Animation2DActivity.this,
                    R.anim.linear_interpolator);
            mobjectImageButton.startAnimation(logoMoveAnimation);

请享用。

于 2011-08-24T09:44:23.630 回答