我试图整理并在列表视图中留下一些更漂亮的物品,但不能,总是粘在分离线上,看起来非常糟糕。我现在看到了我的代码和屏幕
布局
rows reserved data index_size unused
---- -------- ---- ---------- ------
180000 117760 46184 71352 224
适配器的布局
<ListView
android:id="@+id/listView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/EditText01"
android:cacheColorHint="#00000000"
android:textColor="#000000"
android:textSize="15sp" />
答案 0 :(得分:1)
尝试在适配器的顶部和底部添加边距。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:marginTop="10dp"
android:marginBottom="10dp" >
...
</RelativeLayout>