Home
last modified time | relevance | path

Searched refs:accountsPref (Results 1 – 2 of 2) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/
DMainFragment.java192 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in onCreatePreferences() local
193 if (accountsPref != null) { in onCreatePreferences()
194 accountsPref.setVisible(false); in onCreatePreferences()
424 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in updateAccountPref() local
439 if (accountsPref != null) { in updateAccountPref()
440 accountsPref.setVisible(true); in updateAccountPref()
448 if (accountsPref != null) { in updateAccountPref()
449 accountsPref.setVisible(false); in updateAccountPref()
457 if (accountsPref != null) { in updateAccountPref()
458 accountsPref.setVisible(true); in updateAccountPref()
[all …]
/packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/
DMainFragmentTest.java229 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasOneAccount() local
230 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasOneAccount()
232 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasOneAccount()
238 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_accounts_and_sign_in); in testUpdateAccountPrefInfo_hasOneAccount()
239 verify(accountsPref, atLeastOnce()).setSummary("test"); in testUpdateAccountPrefInfo_hasOneAccount()
245 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasNoAccount() local
246 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasNoAccount()
248 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasNoAccount()
252 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_add_an_account); in testUpdateAccountPrefInfo_hasNoAccount()
253 verify(accountsPref, atLeastOnce()) in testUpdateAccountPrefInfo_hasNoAccount()
[all …]