Android - 简单的按钮旋转

时间:2014-10-25 13:10:48

标签: android button rotation

我希望按钮以90度旋转显示,就像那样简单。有什么建议吗?

<Button
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:id="@+id/systeminfo"
            android:layout_gravity="center_horizontal"
            android:layout_weight="0.433"
            android:background="@drawable/thumbnail_big"
            android:textColor="#ff000000"
            android:textSize="30dp"/>

2 个答案:

答案 0 :(得分:1)

简单:

findViewById(R.id.systeminfo).setRotation(90);

答案 1 :(得分:1)

在java类中使用setRotation()。从API 11中为所有视图添加了setRotation()方法。

示例

view.setRotation(degree);