0

基本上,我需要知道如何从我的代码中将用户输入的字符串插入到我的 gui 上的文本编辑中。

4

1 回答 1

0

Try this-

   String str = "this is a text";
   EditText editText = (EditText)findViewById(R.id.edit_text);
   editText.setText(str, TextView.BufferType.EDITABLE);

You can use any string in String object.

于 2013-10-10T03:20:14.277 回答