美好的一天...我正在使用两个应用程序,并且两个应用程序都必须先登录一个用户。登录后的第一个应用程序,单击该按钮时有一个按钮,它将用户转发到第二个应用程序登录。因此,现在用户已登录两个不同的应用程序。因此,如何在单击注销按钮时注销两个应用程序。我只能注销一个应用程序。
这是我退出应用程序的代码
public class AnotherClass {
public void someMethod(MyInterface interface) {
if (interface == null) {
System.err.println("Invalid reference!");
System.exit(-1);
} else {
String interfaceName = interface.getClass().getSimpleName();
/**
* This is where my problem is!
*/
MyInterface newInterface = new <interfaceName> // where interfaceName would be MyClass1 or 2 or 3...
}
}
}
答案 0 :(得分:0)
您可以在两个应用程序中注册广播接收器。单击注销按钮后,您可以发送此注销广播。在通过广播接收器的onreceive方法接收到此注销广播后,请调用mAuth.signOut()。