how to change size of button dynamic in android

前端 未结 3 1117
无人及你
无人及你 2020-12-10 00:02

I try setWidth() and setheight() method but it not work

3条回答
  •  再見小時候
    2020-12-10 00:54

    For me works perfect this:

        ViewGroup.LayoutParams params = myButton.getLayoutParams();
        //Button new width
        params.width = 400;
    
        myButton.setLayoutParams(params);
    

提交回复
热议问题