Home
last modified time | relevance | path

Searched refs:viewIndex (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCommandQueue.java78 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon); in addIcon() argument
79 public void updateIcon(String slot, int index, int viewIndex, in updateIcon() argument
81 public void removeIcon(String slot, int index, int viewIndex); in removeIcon() argument
205 final int viewIndex = mList.getViewIndex(index); in handleMessage() local
212 mCallbacks.addIcon(mList.getSlot(index), index, viewIndex, icon); in handleMessage() local
215 mCallbacks.updateIcon(mList.getSlot(index), index, viewIndex, in handleMessage() local
223 mCallbacks.removeIcon(mList.getSlot(index), index, viewIndex); in handleMessage() local
DStatusBar.java91 int viewIndex = 0; in start() local
95 addIcon(iconList.getSlot(i), i, viewIndex, icon); in start() local
96 viewIndex++; in start()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBar.java511 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { in addIcon() argument
512 if (SPEW) Slog.d(TAG, "addIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex in addIcon()
516 mStatusIcons.addView(view, viewIndex, new LinearLayout.LayoutParams(mIconSize, mIconSize)); in addIcon()
519 public void updateIcon(String slot, int index, int viewIndex, in updateIcon() argument
521 … if (SPEW) Slog.d(TAG, "updateIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex in updateIcon()
523 StatusBarIconView view = (StatusBarIconView)mStatusIcons.getChildAt(viewIndex); in updateIcon()
527 public void removeIcon(String slot, int index, int viewIndex) { in removeIcon() argument
528 … if (SPEW) Slog.d(TAG, "removeIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex); in removeIcon()
529 mStatusIcons.removeViewAt(viewIndex); in removeIcon()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
DTabletStatusBar.java775 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { in addIcon() argument
779 public void updateIcon(String slot, int index, int viewIndex, in updateIcon() argument
784 public void removeIcon(String slot, int index, int viewIndex) { in removeIcon() argument
/frameworks/base/docs/html/guide/topics/appwidgets/
Dindex.jd1180         int viewIndex = intent.getIntExtra(EXTRA_ITEM, 0);
1181 …         Toast.makeText(context, "Touched view " + viewIndex, Toast.LENGTH_SHORT).show();