我的按鈕是:我可以添加數組到android按鈕嗎?
<Button
android:text=""
android:id="@+id/b1"
android:gravity="center_horizontal"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/the_border"
android:textSize="75sp"/>
而且我有很多的(B0,B1,B2)......
我的Java:
for(int index = 0; index < 9; index++)
{
places[index] = (Button) findViewById(R.id.b + index);
places[index].setOnClickListener(this);
}
我怎麼能這樣做? findViewById(R.id.b + index)
需要更改。可能嗎?謝謝