动态更改listview的分隔高度?

问题描述 投票:5回答:2

这个问题在这里被问到a link

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

我已经制作了一个自定义适配器,我正在设置我的布局

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的分隔高度的任何想法

此致,Laxmikant

android listview dynamic height divider
2个回答
6
投票
//set Divider as you like   

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

//then set the height dynamically

listView.setDividerHeight(1);

在您的Activity中有ListView。不是Adapter类。

如果你在问题中写的究竟是什么。做这个:

让每个listView Item布局包含一个TextView和一个View(每个项后面的分隔符),然后根据你在getView()方法中获得的位置参数来改变View的高度。

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);
}

等等。


0
投票

稍微调整到上面让它适合我(View中没有setHeight()方法?),谢谢:

Holder.View = (View)convertView.findViewById(R.id.view);
if(position == 0){
  (Holder.View).getLayoutParams().height = *your desired height e.g. 20*;
}
© www.soinside.com 2019 - 2024. All rights reserved.