标签: android
使用TextViews空minlines=1代替使用margin,padding,是否有任何错误的方为布局添加空间,或
TextViews
minlines=1
margin
padding
<Space android:layout_width="wrap_content" android:layout_height="10dp/>
修改
以下是一个示例图片,红色箭头指向我使用空TextView的位置
TextView
答案 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"/>
您可以根据需要更改width和height。
width
height