プログラムwidth
で のを変更する方法。Button
を変更できますheight
が、幅は変わりません。以下は私のコードスニペットです
private void createButton(final String label)
{
Button button = new Button(this);
button.setText(label);
button.setWidth(10);
button.setHeight(100);
button.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View v)
{
}
});
mMenuContainer.addView(button, mMenuItemLayoutParamters);
}
しかし、width
の は画面のButton
を占有しwidth
ます。