Android:在textview中旋转会在左侧添加边距

时间:2016-10-20 05:21:40

标签: android rotation textview

我使用了旋转:xml中的-90将文本垂直旋转。但是它在左侧添加了边距,我希望屏幕左侧的textview没有边距。enter image description here

<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>

0 个答案:

没有答案