HomeSort by relevance Sort by last modified time
    Searched refs:dreamInfo (Results 1 - 2 of 2) sorted by null

  /packages/apps/Settings/src/com/android/settings/
DreamBackend.java 55 public static class DreamInfo {
64 StringBuilder sb = new StringBuilder(DreamInfo.class.getSimpleName());
95 public List<DreamInfo> getDreamInfos() {
102 List<DreamInfo> dreamInfos = new ArrayList<DreamInfo>(resolveInfos.size());
106 DreamInfo dreamInfo = new DreamInfo();
107 dreamInfo.caption = resolveInfo.loadLabel(pm);
108 dreamInfo.icon = resolveInfo.loadIcon(pm)
    [all...]
DreamSettings.java 51 import com.android.settings.DreamBackend.DreamInfo;
269 List<DreamInfo> dreamInfos = mBackend.getDreamInfos();
283 private class DreamInfoAdapter extends ArrayAdapter<DreamInfo> {
293 DreamInfo dreamInfo = getItem(position);
294 logd("getView(%s)", dreamInfo.caption);
296 row.setTag(dreamInfo);
299 ((ImageView) row.findViewById(android.R.id.icon)).setImageDrawable(dreamInfo.icon);
302 ((TextView) row.findViewById(android.R.id.title)).setText(dreamInfo.caption);
306 radioButton.setChecked(dreamInfo.isActive)
    [all...]

Completed in 690 milliseconds