suchen

Heim  >  Fragen und Antworten  >  Hauptteil

android - GridView长按改变颜色

ringa_leeringa_lee2772 Tage vor583

Antworte allen(2)Ich werde antworten

  • 迷茫

    迷茫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;
                }
            });

    Antwort
    0
  • 巴扎黑

    巴扎黑2017-04-17 16:11:52

    for (int i=0;i < arg0.getChildCount();i++){

                    if (position==i){
                        v.setBackgroundColor();
                    }else{
                        v.setBackgroundColor();
                    }
                }

    Antwort
    0
  • StornierenAntwort