2013-03-12 4 views
4

나는이 문제에 대해 봤지만 모든 해결책을 찾지 못했습니다.나만의 맞춤 계정을 삭제할 수 없습니다.

나는 내 자신의 사용자 정의 계정을 만들었습니다. 내가 프로그래밍 다음 코드를 사용하여 계정을 제거하기 위해 노력하고있어 경우, 계정이 삭제되지 않습니다

Account systemAccount = new Account(mainAccount.getDisplayName(), 
            getResources().getString(R.string.account_type)); 
AccountManager.get(Accounts.this).removeAccount(systemAccount, null, null); 

을하더라도, 내가 설정에서 계정을 제거하려고 할 때, 아무 일도하지 않습니다. 응용 프로그램을 제거 할 때만 계정이 제거됩니다.

어떻게해야합니까?

+0

logcat에 오류가 있습니까? –

+0

아니요, 아무것도 아님 .... – Hazhir

+0

동일한 문제가있어 계정이 애플리케이션 데이터를 지운 후에 설정에서 삭제 될 수있는 상태가되었습니다. 내 문제는 내가 인증 토큰 새로 고침에 대한 발리 동기 요청을 사용하고 그 요청이 어떻게 든 AbstractAccountAuthenticator 내 구현을 차단했습니다. 제 경우에는 AccountManagerFuture가 호출되지 않았습니다. –

답변

2

두 가지 :

  1. 항상을 변경하려면 AccountManager에서 계정 개체를 얻을. 당신이 당신의 Authenticator, 당신은 사실의 부울 값으로 번들을 반환하고에 getAccountRemovalAllowed을 무시하는 경우

    final AccountManager accountManager = AccountManager.get(this); 
    accountManager.getAccountsByType(Constants.ACCOUNT_TYPE)[0]; 
    
  2. 것이 있는지 확인이 기본 동작입니다.

    public Bundle getAccountRemovalAllowed(
         AccountAuthenticatorResponse response, Account account) 
         throws NetworkErrorException { 
        final Bundle result = new Bundle(); 
    
        result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, true); 
    
        return result; 
    } 
    
+0

는'AbstractAccountAuthenticator'처럼 보입니다. – sherpya

+0

네, 기본 동작이라고 설명했습니다. 나는 그가 방법을 무시하고 있다면 경고했다. – monxalo

4

당신은 AccountManagerCallback<Boolean>#run 메서드에 매개 변수로 전달 된 Future을 사용하고 있지 않습니다. 당신이 future.getResult()를 호출하는 방법 당신은주의해야 public AccountManagerFuture<Boolean> removeAccount (Account account, AccountManagerCallback<Boolean> callback, Handler handler)

myAccountManager.removeAccount(myAccount, new AccountManagerCallback<Boolean>() { 
    @Override 
    public void run(AccountManagerFuture<Boolean> future) { 
     // This is the line that actually starts the call to remove the account. 
     boolean wasAccountDeleted = future.getResult(); 
    } 
}, null); 

:

당신은에 두 번째 매개 변수로 콜백을 제공해야한다. 기본 UI 스레드에서 호출하면 안됩니다. 이 예제는 간결함을 위해 그 메커니즘을 제공하지 않습니다.

+0

'future.getResult'는'AuthenticatorException'과'OperationCanceledException'을 처리해야합니다! –

+1

독자를위한 운동으로 남았습니다. –

+0

Ohh ok! 그들에게 행운을 빌어 요 :) –