1

我试图在我的列表视图外部设置一个边框,同时为其他每一行设置不同的颜色

在此处输入图像描述

这是我的适配器的 getView 方法

        viewHolder.dateView.setText(entry.getDateString("yyyy-MM-dd HH:mm"));
        if(position % 2 == 0){
            viewHolder.linearLayout.setBackgroundResource(R.color.grey);

        }
        else{
            //viewHolder.linearLayout.setBackgroundResource(R.color.white);
        }

这是我用来在列表视图上制作边框而不是单元格的 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
   <!-- use this for transparent -->
   <!-- <solid android:color="#00000000" /> -->
   <!-- use this for a background colour -->
   <solid android:color="@color/white" />
   <stroke android:width="2dip" android:color="@color/black"/>
</shape>

如果我将背景设置为单元格,我将看不到边框

4

1 回答 1

5

改写

您显然已经阅读:如何在 ListView 周围设置边框?因为您使用的是更好/更受欢迎的答案中的代码。但也请阅读底部答案,我通过添加2dp填充(与边框宽度相同)取得了成功。

  <LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/border_listview"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    android:padding="2dp" >

    <ListView
        android:id="@+id/listView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:divider="@null"
        android:dividerHeight="0dp" />
</LinearLayout>
于 2013-03-18T23:06:35.790 回答