如何为Android编写注销应用程序?

时间:2013-11-15 18:37:45

标签: android json login logout

我开发了一个应用程序,它从用户那里获取用户名和密码并将它们发送到localhost。然后Localhost发回一个由JSON解析的号码。但是,现在我需要实现一个注销代码来记录用户。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

来自非登录活动:

Intent intent = new Intent(activity.this,Login.class);
startActivity(intent);
finish();