Home
last modified time | relevance | path

Searched refs:mActionFragment (Results 1 – 14 of 14) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/
DBaseSettingsActivity.java40 protected Fragment mActionFragment; field in BaseSettingsActivity
78 mActionFragment = ActionFragment.newInstance(mActions); in setView()
79 setContentAndActionFragments(mContentFragment, mActionFragment); in setView()
90 mActionFragment = ActionFragment.newInstance(mActions); in setView()
91 setContentAndActionFragments(mContentFragment, mActionFragment); in setView()
137 mActionFragment = getActionFragment(); in goBack()
139 if ((mActionFragment != null) && (mActionFragment instanceof ActionFragment)) { in goBack()
140 ActionFragment actFrag = (ActionFragment) mActionFragment; in goBack()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
DAddAccessoryActivity.java95 private ActionFragment mActionFragment; field in AddAccessoryActivity
236 mActionFragment = ActionFragment.newInstance(mActions); in onCreate()
238 setContentAndActionFragments(mContentFragment, mActionFragment); in onCreate()
413 int selectedIndex = mActionFragment.getSelectedItemPosition() + 1; in onHwKeyEvent()
417 mActionFragment.setSelectionSmooth(selectedIndex); in onHwKeyEvent()
445 if (mActionFragment != null && mBtPairer != null) { in updateView()
468 ActionAdapter adapter = (ActionAdapter) mActionFragment.getAdapter(); in updateView()
DBluetoothPairingDialog.java73 private ActionFragment mActionFragment; field in BluetoothPairingDialog
320 mActionFragment = ActionFragment.newInstance(mActions); in createConfirmationDialog()
378 setContentAndActionFragments(mContentFragment, mActionFragment); in createConfirmationDialog()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DDateTimeActivity.java276 if (mActionFragment instanceof ActionFragment) { in updateTimeAndDateDisplay()
277 ActionAdapter adapter = (ActionAdapter) ((ActionFragment)mActionFragment).getAdapter(); in updateTimeAndDateDisplay()
374 mActionFragment = ActionFragment.newInstance(mActions); in updateView()
414 mActionFragment = datePicker; in updateView()
443 mActionFragment = timePicker; in updateView()
446 mActionFragment = ActionFragment.newInstance(mActions); in updateView()
461 setContentAndActionFragments(mContentFragment, mActionFragment); in setViewWithActionFragment()
DLanguageActivity.java129 private ActionFragment mActionFragment; field in LanguageActivity
140 setContentAndActionFragments(mContentFragment, mActionFragment); in onCreate()
216 mActionFragment = ActionFragment.newInstance(mActions); in init()
DCaptionSetupActivity.java397 mActionFragment = ActionFragment.newInstance(mActions); in updateView()
398 setActionFragment (mActionFragment); in updateView()
DDeveloperOptionsActivity.java292 mActionFragment = ActionFragment.newInstance(mActions); in updateView()
293 setContentAndActionFragments(mContentFragment, mActionFragment); in updateView()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
DAccountSyncSettings.java80 private ActionFragment mActionFragment; field in AccountSyncSettings
110 mActionFragment = ActionFragment.newInstance(getActions(mAccountManager.getAccounts())); in onCreate()
114 getResources().getColor(R.color.icon_background)), mActionFragment); in onCreate() local
361 int count = mActionFragment.getAdapter().getCount(); in requestOrCancelSyncForEnabledProviders()
363 Action action = (Action) mActionFragment.getAdapter().getItem(i); in requestOrCancelSyncForEnabledProviders()
430 ((ActionAdapter) mActionFragment.getAdapter()).setActions(result); in onPostExecute()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/widi/
DWifiDisplayActivity.java47 private ActionFragment mActionFragment; field in WifiDisplayActivity
56 mActionFragment = ActionFragment.newInstance(getMainActions()); in onCreate()
60 mActionFragment); in onCreate() local
129 ((ActionAdapter) mActionFragment.getAdapter()).setActions(getMainActions()); in showMainScreen()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/display/daydream/
DDaydreamActivity.java63 private ActionFragment mActionFragment; field in DaydreamActivity
72 mActionFragment = ActionFragment.newInstance(getMainActions()); in onCreate()
73 setContentAndActionFragments(mContentFragment, mActionFragment); in onCreate()
218 ((ActionAdapter) mActionFragment.getAdapter()).setActions(getMainActions()); in updateMainScreen()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
DStorageActivity.java53 private ActionFragment mActionFragment; field in StorageActivity
104 mActionFragment = ActionFragment.newInstance(getActions()); in onCreate()
109 setContentAndActionFragments(mContentFragment, mActionFragment); in onCreate()
152 ((ActionAdapter) mActionFragment.getAdapter()).setActions(actions); in updateActions()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
DAppManagementActivity.java70 private ActionFragment mActionFragment; field in AppManagementActivity
87 mActionFragment = ActionFragment.newInstance(getActions()); in onCreate()
93 getResources().getColor(R.color.icon_background)), mActionFragment); in onCreate() local
425 ((ActionAdapter) mActionFragment.getAdapter()).setActions(getActions()); in updateActions()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/privacy/
DPrivacyActivity.java68 private ActionFragment mActionFragment; field in PrivacyActivity
92 mActionFragment = ActionFragment.newInstance(getFactoryResetActions()); in onCreate()
93 setContentAndActionFragments(mContentFragment, mActionFragment); in onCreate()
393 ((ActionAdapter) mActionFragment.getAdapter()).setActions(getMainActions()); in updateMainScreen()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/resolver/
DResolverActivity.java422 ActionAdapter adapter = (ActionAdapter) ((ActionFragment) mActionFragment).getAdapter(); in handlePackagesChanged()