我有以下屏幕:
http://i54.tinypic.com/1zlw28i.png
我正在尝试旋转文本,然后在此按钮上设置文本。
为此,我有以下布局:
<?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);
但遗憾的是,我的按钮上没有显示任何文字。是否有任何想法?
答案 0 :(得分: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" />
然后在xml中的textview上添加以下行,您可以在其中定义textView。
android:interpolator="@anim/linear_interpolator"
并最终应用于代码下方......
Animation logoMoveAnimation = AnimationUtils.loadAnimation(Animation2DActivity.this,
R.anim.linear_interpolator);
mobjectImageButton.startAnimation(logoMoveAnimation);
享受。