我有以下屏幕:
我正在尝试旋转文本,然后在此按钮上设置文本。
为此,我有以下布局:
<?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);
但不幸的是,我的按钮上没有出现任何文字。有人有什么想法吗?