Heim > Fragen und Antworten > Hauptteil
迷茫2017-04-17 16:11:52
gridView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
view.setBackgroundColor(...);
return true;
}
});
巴扎黑2017-04-17 16:11:52
for (int i=0;i < arg0.getChildCount();i++){
if (position==i){
v.setBackgroundColor();
}else{
v.setBackgroundColor();
}
}