我希望按钮以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"/>
答案 0 :(得分:1)
简单:
findViewById(R.id.systeminfo).setRotation(90);
答案 1 :(得分:1)