我使用了旋转:xml中的-90将文本垂直旋转。但是它在左侧添加了边距,我希望屏幕左侧的textview没有边距。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_vertical">
<TextView
android:id="@+id/txtNetworkStatus"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_margin="0dp"
android:background="@color/completed"
android:padding="3dp"
android:rotation="-90"
android:text="Online"
android:translationZ="1dp" />
</LinearLayout>