我花了一个星期试图做到这一点,但没有结果。
我想做一些像图像中的内容。
每个按钮都应该是一个矩形。
编辑:
这是我的代码:
public class MainActivity extends ActionBarActivity {
private int game_counter=1;
private int nof_columns = 10;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
GridView table_layout = new GridView(this);
table_layout.setNumColumns(this.nof_columns);
int button_size=5;
for(int rows=1; rows<=this.nof_columns; rows++) {
TableRow rowT = new TableRow(this);
for(int columns=1; columns<=this.nof_columns; columns++){
Button bn = new Button(this);
bn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
onclick_function(v);
}
});
bn.setId(100 + rows * this.nof_columns + columns);
bn.setWidth(button_size);
bn.setHeight(button_size);
bn.getBackground().setColorFilter(Color.GRAY, PorterDuff.Mode.MULTIPLY);
MyTags tag = new MyTags();
bn.setTag(tag);
rowT.addView(bn);
}
//rowT.setPadding(-5,-5,-5,-5);
rowT.setMinimumHeight(button_size);
rowT.setMinimumWidth(button_size);
table_layout.addView(rowT);
//table_layout.setPadding(-70,-70,-70,-70);
}
setContentView(table_layout);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:0)