我的字符串没有出现在我的数据库中
所以我使用了一个名为“add”的editText,当我单击按钮时,他必须在表中插入标题(字符串)、金额(int)和注释(字符串)。 标题是这样的: String title = add.getText().toString(); 但它没有出现在表中。 另外,当我忘记了它显示的“getText()”时:android.widget.EditText@43e41168。 我不知道为什么... (抱歉我的英语不好,我是法国人^^)。
So i used a editText called "add", when i click on the button he have to insert into a table a title (string) and amount(int) and comments (string) .
the title is like this : String title = add.getText().toString();
But it does not appear in the table .
Plus when i had forgotten the "getText()" it displayed : android.widget.EditText@43e41168 .
I dont know why ...
(Sorry for my bad english, i'm french ^^).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这
是正确的答案,我必须将字符串标题从 onCreate 移动到 onClick。
}
this is the right answer, i had to move the String title from the onCreate to the onClick.