how to change size of button dynamic in android

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

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

3条回答
  •  轮回少年
    2020-12-10 00:54

    Try using LayoutParams. For example

    button.setLayoutParams (new LayoutParams(50, LayoutParams.WRAP_CONTENT)

提交回复
热议问题