In Android, how to create EditText of fixed width?

后端 未结 10 456
醉酒成梦
醉酒成梦 2020-12-04 17:52

I would like to create an EditText which accepts only numbers, has a maximum of 4 numbers, and is never narrower than it would be if filled with 4 numbers (does not shrink

10条回答
  •  情深已故
    2020-12-04 18:23

    There is an incredibly easy way to do this programmatically.

    myEditText.setLayoutParams(new LinearLayout.LayoutParams(200, 50));
    

    This would set the width to 200 and the height to 50!!

    Enjoy :)

提交回复
热议问题