Searched refs:presets (Results 1 - 5 of 5) sorted by relevance

/packages/apps/Car/Radio/src/com/android/car/radio/
H A DPresetsAdapter.java35 * Adapter that will display a list of radio stations that represent the user's presets.
51 * Interface for a listener that will be notified when an item in the presets list has been
64 * Interface for a listener that will be notified when a favorite in the presets list has been
93 * Sets the given list as the list of presets to display.
95 public void setPresets(List<Program> presets) { argument
96 mPresets = presets;
101 * Indicates which radio station is the active one inside the list of presets that are set on
103 * passed to this method does not match any of the presets, then none will be highlighted.
148 // list of presets should not be limited.
H A DRadioPresetsFragment.java260 * Sets the given list of presets into the PagedListView {@link #mPresetsList}.
262 private void setPresetsOnList(List<Program> presets) { argument
264 Log.d(TAG, "setPresetsOnList(). # of presets: " + presets.size());
267 mPresetsAdapter.setPresets(presets);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/
H A DPresetManagementDialog.java17 package com.android.gallery3d.filtershow.presets;
H A DUserPresetsAdapter.java17 package com.android.gallery3d.filtershow.presets;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/
H A DFilterShowActivity.java112 import com.android.gallery3d.filtershow.presets.PresetManagementDialog;
113 import com.android.gallery3d.filtershow.presets.UserPresetsAdapter;
1128 ArrayList<FilterUserPresetRepresentation> presets = mUserPresetsManager.getRepresentations();
1129 if (presets == null) {
1135 if (presets.size() > 0) {
1139 for (int i = 0; i < presets.size(); i++) {
1140 FilterUserPresetRepresentation representation = presets.get(i);
1145 if (presets.size() > 0) {

Completed in 132 milliseconds