Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCommandQueue.java77 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon); in addIcon() argument
78 public void updateIcon(String slot, int index, int viewIndex, in updateIcon() argument
80 public void removeIcon(String slot, int index, int viewIndex); in removeIcon() argument
247 final int viewIndex = mList.getViewIndex(index); in handleMessage() local
254 mCallbacks.addIcon(mList.getSlot(index), index, viewIndex, icon); in handleMessage() local
257 mCallbacks.updateIcon(mList.getSlot(index), index, viewIndex, in handleMessage() local
265 mCallbacks.removeIcon(mList.getSlot(index), index, viewIndex); in handleMessage() local
DBaseStatusBar.java520 int viewIndex = 0; in start() local
524 addIcon(iconList.getSlot(i), i, viewIndex, icon); in start() local
525 viewIndex++; in start()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tv/
DTvStatusBar.java37 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { in addIcon() argument
41 public void updateIcon(String slot, int index, int viewIndex, StatusBarIcon old, in updateIcon() argument
46 public void removeIcon(String slot, int index, int viewIndex) { in removeIcon() argument
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DDatePickerDialog.java287 private void setCurrentView(final int viewIndex) { in setCurrentView() argument
290 switch (viewIndex) { in setCurrentView()
299 if (mCurrentView != viewIndex) { in setCurrentView()
303 mCurrentView = viewIndex; in setCurrentView()
319 if (mCurrentView != viewIndex) { in setCurrentView()
323 mCurrentView = viewIndex; in setCurrentView()
/frameworks/base/core/java/android/widget/
DDatePickerCalendarDelegate.java331 private void setCurrentView(final int viewIndex) { in setCurrentView() argument
334 switch (viewIndex) { in setCurrentView()
337 if (mCurrentView != viewIndex) { in setCurrentView()
341 mCurrentView = viewIndex; in setCurrentView()
351 if (mCurrentView != viewIndex) { in setCurrentView()
355 mCurrentView = viewIndex; in setCurrentView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DPhoneStatusBar.java1249 public void addIcon(String slot, int index, int viewIndex, StatusBarIcon icon) { in addIcon() argument
1250 if (SPEW) Log.d(TAG, "addIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex in addIcon()
1254 mStatusIcons.addView(view, viewIndex, new LinearLayout.LayoutParams( in addIcon()
1258 mStatusIconsKeyguard.addView(view, viewIndex, new LinearLayout.LayoutParams( in addIcon()
1262 public void updateIcon(String slot, int index, int viewIndex, in updateIcon() argument
1264 … if (SPEW) Log.d(TAG, "updateIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex in updateIcon()
1266 StatusBarIconView view = (StatusBarIconView) mStatusIcons.getChildAt(viewIndex); in updateIcon()
1268 view = (StatusBarIconView) mStatusIconsKeyguard.getChildAt(viewIndex); in updateIcon()
1272 public void removeIcon(String slot, int index, int viewIndex) { in removeIcon() argument
1273 … if (SPEW) Log.d(TAG, "removeIcon slot=" + slot + " index=" + index + " viewIndex=" + viewIndex); in removeIcon()
[all …]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardWidgetPager.java796 protected void setPageHoveringOverDeleteDropTarget(int viewIndex, boolean isHovering) {
797 KeyguardWidgetFrame child = getWidgetPageAt(viewIndex);
DPagedView.java2609 protected void setPageHoveringOverDeleteDropTarget(int viewIndex, boolean isHovering) {}
/frameworks/base/docs/html/guide/topics/appwidgets/
Dindex.jd1263         int viewIndex = intent.getIntExtra(EXTRA_ITEM, 0);
1264 …         Toast.makeText(context, "Touched view " + viewIndex, Toast.LENGTH_SHORT).show();