0

我需要在 android 中的文本视图前面添加一个边距,但是当我使用 android:layout_marginLeft/Right 时它不起作用。还有其他方法吗?

<TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="7dip"
        android:paddingRight="27dip"
        android:paddingTop="7dip"
        android:text="Name"
        android:textColor="#10a6a4"
        android:textSize="20dp"
        android:layout_marginRight="40dp"
        android:textStyle="bold" />
4

1 回答 1

0

你在用RelativeLayout吗?边距和填充在 s 中不起作用(据我所知)RelativeLayout。尝试使用 a LinearLayout,或者如果您正在使用android:layout_aboveandandroid:layout_bellow或这些东西,请将 txtView 和您正在填充它的 View 放在一个新的 LinearLayout 中。希望我有所帮助。

于 2012-10-27T19:45:02.593 回答