天天看点

【Android 基础】 ListView 部分Item不可选中

设置右侧作为一个整体的ListView,图像与声音在右侧ListView 设置为不可选中状态,解决方案如下:

在继承BaseAdapter适配器中重写如下方法:

public boolean areAllItemsEnabled();

public boolean isEnabled(int position) ;

关键代码如下:

/**
* 
* @author LiiuDongBing create at 2017-01-15
*/
public class SecondPageTagAdapter extends BaseAdapter {


    //是否所有的Item 都可以点击与选中;
    @Override
    public boolean areAllItemsEnabled() {
            // TODO Auto-generated method stub
            return false;
    }
    特定positon的不可操作,通常和areAllItemsEnabled一起使用
    @Override
    public boolean isEnabled(int position) {

            String strTextString = "网络连接";

            if (strTextString.equals(mItems.get().getTitle())) {
                    if (position ==  || position ==  ) {
                        return false;
                    }
                }

    return true;

}
           
【Android 基础】 ListView 部分Item不可选中

继续阅读