如何在textview中更改文本位置?

时间:2016-02-18 20:13:10

标签: android text textview

我有两个textview里面有文字。文本从textview的开头开始:

enter image description here

我想向右移动10dp内的文本(标题和作者),我该怎么办?

2 个答案:

答案 0 :(得分:0)

如果您只是想移动文字而不是TextView

,请在TextView中添加此内容
android:paddingLeft="10dp"

android:paddingStart="10dp" // prefer this

但是如果您只想移动TextView本身

,请添加此项
android:layout_marginLeft="10dp"

android:layout_marginStart="10dp"

注意:您也可以将两者结合使用。

答案 1 :(得分:0)

有两种方法可以做到这一点。

你可以使用填充或边距,

查看图片以获取说明...

您可以在textview中设置填充

android:paddingLeft="5dp"

android:layout_marginLeft="10dp"

enter image description here