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.
ということで早速質問させていただきました。editText の値を SQLite データベースに保存しています。呼び出しページから値を読み取ると、値は android.widged.EditText@412243c として保存されます。編集テキストに書き込まれた文字列値とは対照的に、これが保存されている理由は何ですか? ありがとう!
次のように editText の値を取得していると仮定しています。
String text1 = editText1.getText();
EditText から値を取得するのは間違った方法です。代わりに、次の方法を使用する必要があります。
String text1 = editText1.getText().toString();