从Android中的动态表中获取价值

时间:2013-12-20 10:01:36

标签: tablelayout dynamic-tables

这是我创建表格和动态追加数据的代码:

table = (TableLayout)findViewById(R.id.table);    
inflater = getLayoutInflater();    

for(int i = 0; i < 5; i++) {    
    row = (TableRow)inflater.inflate(R.layout.row,table, false);    
    TextView text = (TextView)row.findViewById(R.id.text1);    
    text.setText("sss:" + i);     
    text1 = (EditText)row.findViewById(R.id.text2);
    text2 = (TextView)row.findViewById(R.id.text3);   
    text2.setText("");    
    text1.addTextChangedListener(new MyWatcher(text2));    
    table.addView(row);    
}    

此代码工作正常,但单击按钮时出现问题。我想从每一行中获取仅填充的值。

NxtBtn.setOnClickListener(new View.OnClickListener() {   
    public void onClick(View view) {    
    }  
});  

请帮帮我。

0 个答案:

没有答案