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.java248 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in onCreatePreferences() local
249 if (accountsPref != null) { in onCreatePreferences()
250 accountsPref.setVisible(false); in onCreatePreferences()
484 Preference accountsPref = findPreference(KEY_ACCOUNTS_AND_SIGN_IN); in updateAccountPref() local
499 if (accountsPref != null) { in updateAccountPref()
500 accountsPref.setVisible(true); in updateAccountPref()
508 if (accountsPref != null) { in updateAccountPref()
509 accountsPref.setVisible(false); in updateAccountPref()
517 if (accountsPref != null) { in updateAccountPref()
518 accountsPref.setVisible(true); in updateAccountPref()
[all …]
/packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/
DMainFragmentTest.java235 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasOneAccount() local
236 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasOneAccount()
238 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasOneAccount()
244 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_accounts_and_sign_in); in testUpdateAccountPrefInfo_hasOneAccount()
245 verify(accountsPref, atLeastOnce()).setSummary("test"); in testUpdateAccountPrefInfo_hasOneAccount()
251 final Preference accountsPref = mock(Preference.class); in testUpdateAccountPrefInfo_hasNoAccount() local
252 doReturn(accountsPref).when(mMainFragment) in testUpdateAccountPrefInfo_hasNoAccount()
254 doReturn(true).when(accountsPref).isVisible(); in testUpdateAccountPrefInfo_hasNoAccount()
258 verify(accountsPref, atLeastOnce()).setIcon(R.drawable.ic_add_an_account); in testUpdateAccountPrefInfo_hasNoAccount()
259 verify(accountsPref, atLeastOnce()) in testUpdateAccountPrefInfo_hasNoAccount()
[all …]