Get Value of a Edit Text field

前端 未结 12 911
既然无缘
既然无缘 2020-11-22 07:20

I am learning how to create UI elements. I have created a few EditText input fields. On the click of a Button I want to capture the content typed into that input field.

12条回答
  •  清酒与你
    2020-11-22 08:05

    I hope this one should work:

    Integer.valueOf(mEdit.getText().toString());
    

    I tried Integer.getInteger() method instead of valueOf() - it didn't work.

提交回复
热议问题