我想知道我是否可以在父母中定义孩子的边际。
像这样:
<LinearLayout
childrenMargin="10dp"
>
<child />
<child />
<child />
</LinearLayout>
还是我必须为孩子设置layout_margin
?
答案 0 :(得分:0)
听起来您想要将填充添加到父元素。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp" >
...
</LinearLayout>
要考虑的一种方法是填充是视图的内部间距(即它与其子项之间的空间),而边距是视图的外部间距(它与其父级和邻居之间的空间)。