答案 0 :(得分:0)
如果您只是想移动文字而不是TextView
TextView
中添加此内容
android:paddingLeft="10dp"
或
android:paddingStart="10dp" // prefer this
但是如果您只想移动TextView
本身
android:layout_marginLeft="10dp"
或
android:layout_marginStart="10dp"
注意:您也可以将两者结合使用。
答案 1 :(得分:0)