开发者

Setting the width of the button in android

Is it possible to set the wid开发者_运维技巧th of the button while clicking the same button ?


final Button button = (Button) findViewById(R.id.Button01);
int pixels = 30;

button.setOnClickListener(new OnClickListener() {
    @Override
    public void onClick(View v) {
        button.setWidth(pixels);
    }
});
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜