0

我正在开发一个 Android App 项目,其中用户有两个选项,登录和注册。我有几个问题:

1-在注册活动中,我如何存储用户的数据?2- 在登录活动中,我如何检查用户输入的条目是否正确以及用户已经拥有我们的帐户。3-在注册活动中,用户输入的数据应该出现在我这里,以便我能够联系我的应用程序的用户。

我在互联网上搜索,结果是我必须使用 SQLite 数据库。请指导我这个过程。提前致谢。ps 像 Facebook,我们必须注册创建新帐户并登录,我想创建这种类型的应用程序。

4

1 回答 1

0

1- In Sign Up Activity, how can I store the data of the user?

您需要为此维护一个数据库。阅读本教程数据 - 存储教程

2- In Sign Activity, How can I check that the entries enter by the user are correct and the user already have a account by us 现在,您需要检查您的服务器并执行身份验证部分。您需要合并 web 服务并使用 android 网络模块。网络运营

3- In Sign Up Activity, the Data entered by the user should come to me, So that I will able to contact the user of my app

只需跟踪用户输入 uname 和 pwrd 的文本视图。检查textview api

于 2013-10-08T23:01:16.413 回答