2013-04-01 3 views
2

AccountManager에 대한 사용자 정의 계정 유형을 구현하려고합니다. 다음 코드로 계정을 찾고 있습니다.getAccountsByType()에서 계정을 발견했는지 확인

AccountManager am = AccountManager.get(this); 
Account[] accounts = am.getAccountsByType("com.mycustomtype"); 

저는 신입생이며 결과 처리 방법을 모르겠습니다. 기본적으로 계정이 없으면 변수를 0으로 설정하는 if 문을 사용하고 그렇지 않으면 username 변수를 설정합니다. 이 방법은 loginActivity를 시작할지 내 mainActivity를 시작 할지를 안다.

이런 식으로 AccountManager의 결과를 어떻게 처리합니까?

답변

2

에서이를 얻을 수 있습니다 내가 가지고이 다음과 같은 사항 Array.length 사용하여 작업이 나에게 오류를 준

private boolean accountExists = false; 

    AccountManager am = AccountManager.get(this); 
Account[] accounts = am.getAccountsByType("com.mycustomtype"); 
if(accounts.length >= 1) { 
    accountExists = true; 
} 
+0

.. 우리는 "com .google "은 기기에 추가 된 모든 계정을 제공합니까? –

1

당신은 accounts.length

if (accounts.length > 0) { 
    // Account found 
} else { 
    // No account found 
} 
+0

"배열 형 계정에 크기를()를 호출 할 수 없습니다 []. 대신 accounts.length> = 1을 사용하여 작동하도록 할 수있었습니다. –

+0

예, 배열을 잊어 버렸습니다 ... ArrayList 생각 ... 실제로 com.cutomtype .. – jaibatrik