XML在所有方面的一行中声明填充或边距

时间:2018-01-26 07:21:33

标签: android css xml

我希望有一种方法可以在xml中的一行中指定所有四条边的填充或边距,就像我们在css中所做的那样。 例如,在css:padding: 1px 2px 3px 4px;

我们有类似的东西吗?

1 个答案:

答案 0 :(得分:0)

Android O DP1为padding和layout_margin引入了定向XML属性。请注意,它们优先于边缘特定值。

<TextView
        android:id="@+id/txtContent" 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="TEXT"
        android:textSize="14sp"
  

机器人:layout_marginHorizo​​ntal = “@扪/ spacing_medium”               机器人:layout_marginVertical = “@扪/ spacing_large”

        />