5

这个问题在这里被问过一个链接

此外,我想澄清一个问题,我有 10 个列表项,Listview 我希望deviderheight每个列表项的第一个项目不同,它应该是setDividerheight(2)第二个setDividerheight(4)这样的..

我制作了一个自定义的 Adapeter,我在其中设置了我的 Layout Like

public View getView(int position, View convertView, ViewGroup parent) {
    View v = super.getView(position, convertView, parent);

    if(position ==2)
    {
        if (v != convertView && v != null) {
            ViewHolder holder = new ViewHolder();

            // TextView tv = (TextView) v.findViewById(R.id.artist_albums_textview);
            // holder.albumsView = tv;

            convertView = mInflater.inflate(R.layout.jazz_artist_list_item, null);
            holder.albumsView = (TextView)convertView.findViewById(R.id.artist_albums_textview);

            //   lv.setDividerHeight(8);
            v.setTag(holder);
        }
    }
    else
    {
        if (v != convertView && v != null) {
            ViewHolder holder = new ViewHolder();

            convertView = mInflater.inflate(R.layout.jazz_artist_list_item, null);
            holder.albumsView = (TextView)convertView.findViewById(R.id.artist_albums_textview);

            //  lv.setDividerHeight(2);
            v.setTag(holder);
        }
    }
}

但这似乎无法正常工作。

关于如何动态设置 Listview 的分隔高度的任何想法

问候, 拉克斯米坎特

4

2 回答 2

7
//set Divider as you like   

listView.setDivider((Drawable) getResources().getDrawable(R.drawable.orange));

//then set the height dynamically

listView.setDividerHeight(1);

在具有 ListView 的 Activity 中。不是适配器类。

如果您在问题中到底写了什么。做这个:

让每个 listView 项目布局包含一个 TextView 和一个视图(每个项目后的分隔符),然后根据您在 getView() 方法中获得的位置参数更改视图的高度。

ListView 项目布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:padding="5dp" >
    <TextView
        android:id="@+id/label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@id/logo"
        android:padding="5dp"
        android:textSize="14dp" >
    </TextView>
    <View
        android:id="@+id/view"
        android:layout_width="fill_parent"
        android:layout_height="1dp"
        android:layout_below="@id/label"
        android:background="@drawable/orange" />
</RelativeLayout>

现在在适配器类中,您的 ViewHolder 包含 TextView 和 View。

所以,

Holder.View = (View)convertView.findViewById(R.id.view);
if(position == 0){
     (Holder.View).setHeight(2);
}

等等。

于 2012-08-08T05:51:23.043 回答
0

对上面的轻微调整让它对我有用(视图中没有 setHeight() 方法?),谢谢:

Holder.View = (View)convertView.findViewById(R.id.view);
if(position == 0){
  (Holder.View).getLayoutParams().height = *your desired height e.g. 20*;
}
于 2014-12-21T11:53:16.893 回答