我正在使用扩展ArrayAdapter
的自定义适配器。我对不同的项目有不同的布局。我喜欢制作特定类型unclickable
的商品。这是我的代码:
package android.adapters;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.Switch;
import android.widget.TextView;
import java.util.ArrayList;
import java.util.List;
import android.items.ItemProperties;
public class CustomAdapter extends ArrayAdapter<ItemProperties> {
private static final int TYPE_ITEM_AMOUNTS = 0;
private static final int TYPE_ITEM_LIMITS = 1;
private static final int TYPE_MAX_COUNT = 2;
private LayoutInflater mInflater;
private ArrayList<Integer> positions = new ArrayList<Integer>();
private List<ItemProperties> items = new ArrayList<ItemProperties>();
public CustomAdapter(Context context, int resource, List<ItemProperties> itemCards, ArrayList positions) {
super(context, resource, items);
this.positions = positions;
this.items = items;
}
@Override
public int getCount() {
return items.size();
}
@Override
public ItemProperties getItem(int position) {
return items.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflaterRow = (LayoutInflater) getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View rowView = null;
int type = getItemViewType(position);
switch (type) {
case TYPE_ITEM_AMOUNTS:
rowView = inflaterRow.inflate(R.layout.item_details, parent, false);
rowView.setEnabled(false);
rowView.setOnClickListener(null);
TextView txtName = (TextView) rowView.findViewById(R.id.text_name);
txtName.setText(itemCards.get(position).getCardLabelDesc());
TextView txtValue = (TextView) rowView.findViewById(R.id.text_value);
txtValue.setText(itemCards.get(position).getCardLabelValue());
break;
case TYPE_ITEM_LIMITS:
rowView = inflaterRow.inflate(R.layout.item_limit_settings, parent, false);
rowView.setEnabled(true);
TextView txtLimitDesc = (TextView) rowView.findViewById(R.id.text_item_description);
txtLimitDesc.setText(itemCards.get(position).getCardLabelDesc());
Switch limitEnable = (Switch) rowView.findViewById(R.id.enable_limit);
limitEnable.setText("");
TextView txtLimit = (TextView) rowView.findViewById(R.id.txt_limit);
txtLimit.setText(itemCards.get(position).getCardLabelValue());
break;
}
return rowView;
}
@Override
public int getViewTypeCount() {
return TYPE_MAX_COUNT;
}
@Override
public int getItemViewType(int position) {
if (positions.contains(position))
return TYPE_ITEM_LIMITS;
else
return TYPE_ITEM_AMOUNTS;
}
}
然而,这对我不起作用,没有任何可点击的内容。
在我填充列表的活动中,我有这个:
propertiesAdapter=new
CustomAdapter(this,R.layout.item_details,itemPropertiesList,positions);
listDetails.setAdapter(propertiesAdapter);
listDetails.setOnItemClickListener(this);
我有onItemClick
事件处理程序。
有人知道这是什么问题吗?
答案 0 :(得分:1)
在TYPE_ITEM_AMOUNTS的类型中,您将视图设置为禁用,并且OnClickListener为null,因此它不可点击,我想这正是您想要的;
在TYPE_ITEM_LIMITS类型中,您有一个Switch,但是没有为交换机设置OnCheckedChangeListener。 当您对ListView使用OnItemClickListener时,请记住:如果在列表项(按钮,或者在您的情况下,切换)中有任何可以单击的内容,那么onItemClick()方法将永远不会工作。这就是为什么您的listView中无法点击任何内容。
您应该将列表中的所有视图设置为不可聚焦,以便onItemClick()可以正常工作。或者,不要使用OnItemClickListener,只需为您的交换机设置一个OnCheckedChangeListener来处理点击事件。
答案 1 :(得分:0)
您需要在适配器中覆盖另外两种方法:
@Override
public boolean areAllItemsEnabled() {
return false;
}
@Override
public boolean isEnabled(int position) {
return (position >= 0) && (position < getCount()) && !isSeparator(position);
}
有一些问题可能会导致点击侦听器在禁用的项目上运行(对于某些复杂的手势,拖动等),因此请对您的点击侦听器添加一个检查,以避免对不可点击的项目产生意外反应。
答案 2 :(得分:0)
下面列出的代码对我没有意义。这将设置要禁用的整个布局视图。 item_details是包含ListView项目的布局,我相信。
rowView = inflaterRow.inflate(R.layout.item_details, parent, false);
rowView.setEnabled(false);
建议的代码,来自getView()案例TYPE_ITEM_AMOUNTS:
TextView txtName = (TextView) rowView.findViewById(R.id.text_name);
txtName.setEnabled(false);
注意: