gpt4 book ai didi

android - 如何在android中禁用 GridView 中特定位置的项目点击

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:11 25 4
gpt4 key购买 nike

我正在使用 GridView ,其中我为每个单元格使用 TextView 。单击网格单元格时,我正在使用 onitemclick 执行某些操作。我想禁用 GridView 中特定位置的项目点击。我怎么做。我将 convertView.setclickable(false) 用于 getView 中的特定位置,它给出了空指针异常。我怎么做??这是我的代码。

@Override
public View getView(int position, View convertView, ViewGroup parent) {
if (convertView == null) {
textView = new TextView(context);
textView.setLayoutParams(new GridView.LayoutParams(35, 35));
} else {
textView = (TextView) convertView;
}

textView.setTextSize(10);
day_color = list.get(position).split("-");
textView.setText(day_color[0]);

if (day_color[1].equals("GREY")) {
textView.setTextColor(Color.LTGRAY);
//greyvalues.get(position)CalendarEvents
convertView.setClickable(false);

}
if (day_color[1].equals("BLACK")) {
textView.setTextColor(Color.BLACK);
}
if ((day_color[1].equals("BLUE"))) {
textView.setTextColor(Color.RED);
}

setColor = Color.TRANSPARENT;
if (position >= startPos && position <= endPos
&& selectdayselected != true) {
setColor = Color.DKGRAY;
}
if (startPos == position && selectdayselected == true)
setColor = Color.DKGRAY;
textView.setBackgroundColor(setColor);


return textView;
}

最佳答案

在你的适配器覆盖

@Override
public boolean areAllItemsEnabled() {
return false;
}

并实现

@Override
public boolean isEnabled(int position) {
// Return true for clickable, false for not
return false;
}

关于android - 如何在android中禁用 GridView 中特定位置的项目点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5514629/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com