0

我正在使用带有自定义适配器的 ListView - 每行包含 2 个 TextView;水平对齐。我面临的问题:第一行项目顶部出现空白区域;它仍然存在,因为行视图被回收。这是我的布局 XML 的片段。

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1.0">

    <ListView
        android:id="@android:id/list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:dividerHeight="0.0dp"
        android:divider="@color/transparent"
        android:cacheColorHint="@color/transparent"
        android:listSelector="@color/transparent"
        android:scrollbars="none"/>

    <View
        android:layout_width="fill_parent"
        android:layout_height="10dp"
        android:background="@drawable/shadow_bottom"
        android:layout_alignParentBottom="true"/>
</RelativeLayout>

这是行项目布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content">
   <MyTextView1
       android:id="@+id/text"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:text="Sample text"
       android:paddingLeft="20dp"
       android:paddingRight="10dp"/>
   <MyTextView2
       android:id="@+id/number"
       android:layout_width="15dp"
       android:layout_height="wrap_content"
       android:gravity="right"
       android:paddingLeft="2dp"
       android:paddingRight="3dp"
       android:textSize="11sp"
       android:text="num"
       android:background="@color/transparent"
       android:textColor="@color/number_dark" />
</RelativeLayout>

MyTextView1 是一个自定义文本视图,用于保存 unicode 文本(马拉雅拉姆语)

这是一个屏幕截图: http: //i.imm.io/Z3CH.png 您可以看到空白区域带有浅灰色(即布局的背景颜色)

当我滚动时,当第一行被回收时,剩余空间 - http://i.imm.io/Z3Dd.png

我怎样才能删除这个空白空间?

4

1 回答 1

-1

从您的textview.
希望这会有所帮助

于 2013-03-12T06:09:07.950 回答