使用带有minlines = x的空TextView来增加空间可行性?

时间:2017-02-01 08:05:38

标签: android

使用TextViewsminlines=1代替使用marginpadding,是否有任何错误的方为布局添加空间,或

<Space android:layout_width="wrap_content" android:layout_height="10dp/>

修改

以下是一个示例图片,红色箭头指向我使用空TextView的位置

enter image description here

1 个答案:

答案 0 :(得分:2)

如果我没有误解你,你需要一个空格,所以你可以使用:

Space

<Space
android:layout_width="1dp"
android:layout_height="30dp"/>

View

<View
android:layout_width="1dp"
android:layout_height="match_parent" // or 0dp
android:layout_weight="1"/>

您可以根据需要更改widthheight