我在Textview
的项目(ListView
)中遇到了间距问题。请不要告诉我这可能是重复的,因为事实并非如此。这里间距是由于我使用的边框可绘制而发生的。我一直在使用ListView
<ListView
android:layout_width="match_parent"
android:layout_height="184dp"
android:id="@+id/googleMapLocations"
android:background="#ffffff"
android:divider="@null"
android:minHeight="20dp"
android:dividerHeight="0dp"
/>
并为其行
创建布局<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/googleMapUserLocationSingleRow"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:ellipsize="end"
android:gravity="center_vertical"
android:paddingBottom="8dp"
android:paddingLeft="15dp"
android:paddingTop="8dp"
android:singleLine="true"
android:background="@drawable/redborder" />
边框代码
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#FFFFFF" />
<stroke
android:width="2dip"
android:color="#FF0000"
/>
<padding
android:left="0dp"
android:top="0dp"
android:right="0dp"
android:bottom="0dp" />
</shape>
使用上面的场景我在列表项之间有空格,我不知道为什么。如何删除列表项之间的空格。请找附件截图。
答案 0 :(得分:0)
对我而言,文本视图的顶部似乎有边距。尝试设置
android:layout_margin="0px"
如果这不起作用,作为一种解决方法,您可以制作一条红线并将其用作分隔符。我知道这不是一个解决方案,但它会给你你想要的结果。