1
選択したスコークの番号が属する正方形をペイントしたいと思います。セルの領域を塗りつぶす
このコードは、印刷のために、行と列です:
//Pintem la fila del nombre seleccionat
for (int i = 0; i < parent.getChildCount(); i++) {
TextView child = (TextView) parent.getChildAt(i);
if ((i/9)==x) {
//child.setBackgroundColor(Color.parseColor("#75FFEE"));
child.setBackground(getDrawable(R.drawable.contornfonsblau));
}
}
//Pintem la columna del nombre seleccionat
for (int i = 0; i < parent.getChildCount(); i++) {
TextView child = (TextView) parent.getChildAt(i);
if ((i%9)==y) {
//child.setBackgroundColor(Color.parseColor("#75FFEE"));
child.setBackground(getDrawable(R.drawable.contornfonsblau));
}
}
は、私は同じことを望んでいたが、正方形のために。