我有一个带有自定义适配器的列表视图。列表视图中的每个项目都有一个图像视图、文本视图和一个复选框。
我的要求是,如果特定项目中文本视图的值为“xyz”,我必须将该复选框设置为不可编辑(应始终选中该复选框,并且不允许用户取消选中它)。
我试过,设置,setClickable(false)
和setEnabled(false)
,但都没有工作。请看下面的代码...
`
@Override
public View getView(final int position, View convertView, ViewGroup root) {
View view = convertView;
if (view == null)
view = inflater.inflate(R.layout.item_favorite_list, null);
view.setTag(teams.get(position).get("name"));
((TextView) view.findViewById(R.id.name)).setText(teams.get(
position).get("name"));
String name = ((TextView) view.findViewById(R.id.name)).getText().toString();
Log.d(Const.TAG, "Name = "+name);
CheckBox checkBox = (CheckBox) view.findViewById(R.id.checkBox);
checkBox.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
CheckBox checkBox = (CheckBox) view;
// do something here..
});
if (favoriteTeams.contains(teams.get(position).get("name")))
checkBox.setChecked(true);
else
checkBox.setChecked(false);
//Need to set the checkBox to non-editable
if(teams.get(position).get("name").equalsIgnoreCase("xyz"))
{
Log.d(Const.TAG, "Position = "+position);
Log.d(Const.TAG, "Team = "+teams.get(position).get("name").toString());
checkBox.setClickable(false);
checkBox.setEnabled(false);
}
return view;
}
}
`