1. ホーム
  2. android

[解決済み] 編集テキストにテキストを設定する方法

2022-04-26 02:12:04

質問

EditTextのテキストを設定するにはどうすればよいですか?

どのように解決するのですか?

のドキュメントを確認すると EditText を選択すると setText() メソッドを使用します。このメソッドには String TextView.BufferType . 例えば

EditText editText = (EditText)findViewById(R.id.edit_text);
editText.setText("This sets the text.", TextView.BufferType.EDITABLE);

も継承しています。 TextView 's setText(CharSequence)setText(int) メソッドと同じように設定することができます。 TextView :

editText.setText("Hello world!");
editText.setText(R.string.hello_world);