开发者

Setting the width of the button in android

开发者 https://www.devze.com 2023-01-18 20:05 出处:网络
Is it possible to set the wid开发者_运维技巧th of the button while clicking the same button ?final Button button = (Button) findViewById(R.id.Button01);

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

精彩评论

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