android关于TableRow获取Spinner值

点击button动态的利用TableRow增加两个spinner和一个“删除”功能的button,
    怎样获取所用添加的spinner被选中的值,求大神指教!

    部分代码如下:
     private void addRow()  
    {  
        tableRow = new TableRow(this);  
        project = new Spinner(this);  
        time = new Spinner(this);
        delBtn = new Button(this); 
        projectSel = new ArrayList<String>();

        delBtn.setText("删除");  
        delBtn.setOnClickListener(new View.OnClickListener()  
            {     
                @Override  
                public void onClick(View view)  
                {  
                    TableRow tableRow = (TableRow) view.getParent();  
                    tableLayout.removeView(tableRow);  

                }  
            });  
        tableRow.addView(project);  
        tableRow.addView(time);
        tableRow.addView(delBtn);  

        tableLayout.addView(tableRow);  

就是获取上面所有新建的spinner里被选中的值!

最简单就是 intetnt.putExtra() 把值传过去

好像是 spinner.getselection吧