私はシナリオで立ち往生しています。ログインフォームがあります。一部のユーザーには無効として表示したいと思います。そのユーザーを取得することはできますが、ウィンドウからフォーカスを削除する方法がわかりません。
//to check whether the current user is administrator or not
public void checkAdministrator(){
String owner = ParseValues.parsedGroupList.get(indexofGroup).getGroup_owner();
String currentUser = CCMStaticVariable.loginUserId+"@abc.com";
if(owner.equalsIgnoreCase(currentUser)){
administrator=true;
}
else{
administrator=false;
}
}
今 -
if(!administrator){
//here I want to disable the whole Activity, I just want to show the activity in disabled state
}