Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
基本的に、ユーザーが入力した文字列をコード内から GUI のテキスト編集に挿入する方法を知る必要があります。
これを試して-
String str = "this is a text"; EditText editText = (EditText)findViewById(R.id.edit_text); editText.setText(str, TextView.BufferType.EDITABLE);
オブジェクトには任意の文字列を使用できStringます。
String