以红色圆圈显示多行
我附加了一个图像,在列表视图的顶部显示多个分隔线,我不知道它们是如何以及为什么它们出现在我的被遗忘列表视图中。它们往往只在我滚动列表时出现。我已经舍入红色圆圈的地方。你还注意到,由于同样的原因,视频缩略图在底部模糊。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/white"
>
<Gallery
android:id="@+id/gallery"
android:layout_width="fill_parent"
android:layout_marginTop="10dip"
android:layout_marginBottom="10dip"
android:layout_height="wrap_content"></Gallery>
<ListView
android:id="@id/android:list"
android:layout_below="@id/gallery"
android:layout_width="fill_parent"
android:cacheColorHint="#00000000"
android:paddingBottom ="55dip"
android:divider="@color/listdivider"
android:dividerHeight="1px"
android:layout_alignWithParentIfMissing="true"
android:layout_height="fill_parent"/>
<!-- bottom buttoms -->
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="50dip"
android:orientation="horizontal"
android:layout_alignParentBottom="true"
android:weightSum="3">
......
</LinearLayout>
</RelativeLayout>
我的列表视图及以下是我从中扩展视图的row.xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@drawable/white"
android:paddingLeft="5dip"
android:paddingRight="5dip"
android:paddingTop="10dip"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/greyborder_with_solid_white"
>
.......
</LinearLayout>
</LinearLayout>