标签: android json login logout
我开发了一个应用程序,它从用户那里获取用户名和密码并将它们发送到localhost。然后Localhost发回一个由JSON解析的号码。但是,现在我需要实现一个注销代码来记录用户。
我该怎么做?
答案 0 :(得分:1)
来自非登录活动:
Intent intent = new Intent(activity.this,Login.class); startActivity(intent); finish();