我有一个带有tablelayout的活动。我将文本放入字符串数组的布局中。但现在我得到了错误:“Void方法无法返回值”
public class stop10 extends SherlockFragmentActivity {
String[] column1;
String[] column2;
View view;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.stop10);
TableLayout prices = (TableLayout)view.findViewById(R.id.table);
String[] column1 = getResources().getStringArray(R.array.column1);
String[] column2 = getResources().getStringArray(R.array.column2);
prices.setStretchAllColumns(true);
prices.bringToFront();
for(int i = 0; i < column1.length; i++){
TableRow tr = new TableRow(getApplicationContext());
TextView c1 = new TextView(getApplicationContext());
c1.setText(column1[i]);
TextView c2 = new TextView(getApplicationContext());
c2.setText(column2[i]);
tr.addView(c1);
tr.addView(c2);
prices.addView(tr);
}
return view;
}
我知道void方法不能返回值,但我现在还应该使用什么呢?
提前致谢。
答案 0 :(得分:2)
以这种方式初始化表格布局
TableLayout prices = (TableLayout)findViewById(R.id.table);
同时删除
return view;
您不必在oncreate方法中返回视图。
setContentView(R.layout.stop10);
处理视图。