0

我在 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,如何?谢谢!

4

1 回答 1

0

您可以在 TextView 上使用 RotateAnimation,但如果您只是尝试在横向和纵向中使用不同的布局,请在不同的文件夹中指定不同的 xml。根据 http://developer.android.com/guide/topics/resources/providing-resources.html命名文件夹

上面的链接告诉您如何为不同的条件指定不同的资源。

于 2011-08-24T06:13:08.350 回答