2015-11-19 48 views
1

我有一個方法可以在gridPane(2x8)中創建新的TextField。我想知道,一旦創建它們,我如何訪問每個索引中的信息(如:0,0 - 1,0等)。如何獲取gridpane內部的信息(javaFX)

下面的代碼:

private void llenarGridJugadores(ArrayList<NodoJugadores> array) 
{ 
    if((array.get(0).getCategoria() == 3) && (array.get(0).getSexo().equalsIgnoreCase("m"))) 
    { 
     for(int i = 0 ; i < array.size() ; i++) 
     { 
      TextField text = new TextField(array.get(i).getNombre()); 
      grid.add(text, i, 0); 
     } 
    } 
    else if((array.get(0).getCategoria() == 3) && (array.get(0).getSexo().equalsIgnoreCase("f"))) 
    { 
     for(int i = 0 ; i < array.size() ; i++) 
     { 
      TextField text = new TextField(array.get(i).getNombre()); 
      grid.add(text, 1, i); 
     } 

這裏就是我想要做的事:

public ArrayList<NodoJugadores> retornarGridJugadores(ArrayList<NodoJugadores> array, NodoCategorias aux) 
{ 
    if((aux.getNumCategoria() == 3) && (aux.getSexo().equalsIgnoreCase("m"))) 
    { 
     for(int i = 0 ; i < array.size() ; i++) 
     { 
      array.get(i).setNombre(grid.getChildren().get(i).getAccessibleText()); 
     } 
    } 
} 
+0

它讓我竊喜,你在西班牙語編寫代碼。我以前從來沒有見過。 – Steven

回答

1

我存儲的組件在我創建了一個新的類的列表。然後我遍歷列表來檢查一個節點是否存在於(row,col)。

public class Triple{ 
    Node n; 
    int row; 
    int col; 
    public Triple(Node n,int row, int col){ 
     this.row = row; 
     this.col = col; 
     this.n = n; 
    } 
} 

這個類是存儲節點到各自的位置。

public static Node getItem(List <Triple> l, int findRow, int findCol){ 

    for(int i=0; i < l.size(); i++){ 
     if(l.get(i).row == findRow && l.get(i).col == findCol){ 
      return l.get(i).n; 
     } 
    } 
    return null; 
} 

這個靜態類需要列表,期望的行和期望的列。然後,如果在(row,col)存在一個元素,它將返回該節點。

public static void testThis(){ 
    List <Triple> list = new ArrayList<>(); 
    GridPane gp = new GridPane(); 
    Text a1 = new Text("Click here"); 
    Text a2 = new Text("Click there"); 
    gp.add(a1, 5, 5); 
    gp.add(a2, 5, 5); 

    for(int i=0; i<gp.getChildren().size; i++){ 
      list.add(new Triple(gp.getChildren().get(i), 
       GridPane.getRowIndex(gp.getChildren().get(i)), GridPane.getColumnIndex(gp.getChildren().get(i)))); 
     } 

     Text tempText = (Text) getItem (list, 5, 5); 
     System.out.println(tempText.getText()); 

生產的「點擊這裏」