我使用导航抽屉。导航抽屉中包含元素/项目(如:用户配置文件,登录/注销)。
因此,当用户点击“登录/退出”选项时,它会将用户导航到用户将通过Google帐户登录的登录页面。因此,当用户登录应用程序时,该选项应从登录更改为注销,并在用户决定注销时,反之亦然。
此外,当用户首次访问应用程序时,该选项应显示为"登录"。怎么可能呢?
因此,此时标签显示"登录"即使用户没有登录帐户。
代码:
public void initializeMenu() {
ChannelAppMenuAdapter mAdapter = new ChannelAppMenuAdapter(this);
// Profile
mAdapter.addHeader("Account");
//Case 2:
/*DAPO:DEV02-20150106: Condition to check if user is login, user is login, title will display LogOut, else
* will display "Login"*
*/
if (isLogin==true)
title = "logout";
else
title="login";
icon = R.drawable.google_icon;
mAdapter.addItem(title, icon);
}
@Override
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
switch (position) {
case 2:
//DEV02-20141231: alternation of login/logout options, login to change to logout when user is login and vice versa
Intent intent = new Intent(getApplicationContext(),
ChannelAppLoginInfoMainActivity.class);
startActivity(intent);
break;
}
答案 0 :(得分:0)
调用登录和注销状态的逻辑,将isLogin保存为静态全局变量。
例如创建一个类。将其称为RunTimeData。
在该类中声明一个布尔变量,如下所示。
public class RunTimeData{
public static boolean isLogin;
}
在您的登录/注销逻辑中,将此变量值设置如下。
RunTimeData.isLogin=true; or RunTimeData.isLogin=false;
在 ChannelAppMenuAdapter 类的getView()方法中,您需要检查此布尔值,如下所示。
TextView textView=findViewById(...);
if(RunTimeData.isLogin){
textView.setText("Logout");
else
textView.setText("Login");
希望这有帮助。