我在 android 中有一个应用程序,我在其中使用 a 设置按钮的文本FrameLayout
,例如:
<FrameLayout android:layout_width="fill_parent"
android:layout_toRightOf="@id/surface_camera"
android:layout_height="fill_parent">
<Button android:layout_width="match_parent"
android:id="@+id/btnPhoto"
android:layout_height="match_parent"/>
<TextView
android:layout_width="match_parent"
android:id="@+id/textview"
android:textColor="#000000"
android:textSize="20dip"
android:layout_gravity="center_horizontal|bottom"
android:layout_height="match_parent"
android:text="Take Photo"
/>
</FrameLayout>
结果如下所示:http: //i53.tinypic.com/2ypgn0l.png
我想问的是有没有任何可能性,进一步使用这个FrameLayout
我可以旋转这个文本???...让我们说 90 度...如果YES
,如何?谢谢!