我的listview项目下的这个空间距离是什么?

时间:2016-01-21 00:47:13

标签: android listview android-view

我扩展了ArrayAdapter以扩展我自己的自定义布局(它没有做太多其他事情并且实现相当简单)。但是我注意到我的listview项目之间存在空白空间:

https://www.evernote.com/l/AM8w6ffsaQhGNJreixsY5fOwDbzTEL7Z73E

我已经尝试设置listview项的高度而不是使用wrap_content,在任何地方都没有边距,我正在设置listview项目的根视图的背景颜色,所以我有很难想出为什么要添加这个空白区域。

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
    ViewHolder holder;
    if (convertView == null) {
      convertView = mInflater.inflate(R.layout.event_row, parent, false);
      holder = new ViewHolder();
      holder.time = (TextView) convertView.findViewById(R.id.clock_event_time);
      holder.title = (TextView) convertView.findViewById(R.id.clock_event_title);
      convertView.setTag(holder);
    } else {
      holder = (ViewHolder) convertView.getTag();
    }
    ClockEvent clockEvent = mClockEvents.get(position);
    holder.time.setText(
        ClockUtil.halfHourIndexToHourString(clockEvent.getStartHalfHourIndex())
            + " - " +
            ClockUtil.halfHourIndexToHourString(clockEvent.getEndHalfHourIndex())
    );
    holder.title.setText(clockEvent.getTitle());
    convertView.setBackgroundColor(clockEvent.getColor());

    return convertView;
  }

这是XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:app="http://schemas.android.com/apk/res-auto"
              xmlns:tools="http://schemas.android.com/tools"
              android:orientation="horizontal"
              android:background="@color/flatui_blue_1"
              android:padding="12dp"
              android:layout_width="match_parent"
              android:layout_height="60dp"
              android:gravity="center_vertical">

    <com.compscieddy.foraday.ui.ForadayTextView
        android:id="@+id/clock_event_time"
        android:layout_height="wrap_content"
        android:background="@drawable/rounded_white_outline"
        app:fontface="montserrat_light"
        android:paddingTop="2dp"
        android:paddingBottom="2dp"
        tools:text="7:00 - 8:00"
        android:textSize="11sp"
        style="@style/EventTimeTextView"/>

    <com.compscieddy.foraday.ui.ForadayTextView
        android:id="@+id/clock_event_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        tools:text="Early Morning Jog"
        android:textColor="@android:color/white"/>

    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"/>

2 个答案:

答案 0 :(得分:2)

因为它是ListView,这可能是它的分隔符。请参阅dividerHeight,您可以在xml或java中设置它以删除分隔符。

android:dividerHeight="0dp"
// or
listView.setDividerHeight(0);

答案 1 :(得分:0)

啊 - 什么是菜鸟,我忘记了dividerHeight的默认样式存在。通过将android:dividerHeight设置为0dp来解决问题。也可以添加一个样式/主题。