テーブル行を追加しようとしているTableLyout
(XML ファイル内の) があります。各行にはボタンが含まれており、その数はパラメーターによって制御されます。
このコードを実行するたびに、プログラムは終了します。簡単な作業のはずです。何がうまくいかないのですか?
ジャワ:
public class Play extends Activity{
int status=0 , timeDelay , row , col;
TextView score;
TableRow rows [];
TableLayout table;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_play);
setLevel();
table = (TableLayout)findViewById(R.id.Table_cards);
for(int i=0 ; i<row ; i++){
TableRow tblr = new TableRow(this);
for(int j=0 ; j<col ; j++){
final ImageButton b = new ImageButton(this);
b.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
b.setBackgroundResource(R.drawable.card_back_blue);
}
});
b.setBackgroundResource(R.drawable.c1+j);
tblr.addView(b);
}
table.addView(tblr);
}
}
XML ファイル:
<TableLayout
android:id="@+id/Table_cards"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@id/layout_up"
android:background="@drawable/wss"
android:gravity="center_vertical"
android:orientation="vertical" >
</TableLayout>