List of usage examples for android.widget TableRow indexOfChild
public int indexOfChild(View child)
From source file:de.tobiasbielefeld.solitaire.ui.manual.ManualGames.java
@Override public void onClick(View v) { //get index of the button as seen from the container TableRow row = (TableRow) v.getParent(); TableLayout table = (TableLayout) row.getParent(); int index = table.indexOfChild(row) * COLUMNS + row.indexOfChild(v); loadGameText(index);/*w w w.j av a 2 s.c o m*/ }