Searched refs:sel (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DListView.java754 View sel = makeAndAddView(position, childrenTop, true,
758 int selHeight = sel.getMeasuredHeight();
760 sel.offsetTopAndBottom((height - selHeight) / 2);
763 fillAboveAndBelow(sel, position);
771 return sel;
778 * @param sel The selected view
779 * @param position The position corresponding to sel
781 private void fillAboveAndBelow(View sel, int position) { argument
784 fillUp(position - 1, sel.getTop() - dividerHeight);
786 fillDown(position + 1, sel
[all...]
H A DGridView.java450 final View sel = makeRow(mStackFromBottom ? rowEnd : rowStart, topSelectionPixel, true);
471 return sel;
700 View sel;
707 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, selectedTop, true);
726 return sel;
888 View sel;
899 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldBottom + verticalSpacing, true);
910 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldTop - verticalSpacing, false);
921 sel = makeRow(mStackFromBottom ? rowEnd : rowStart, oldTop, true);
935 return sel;
[all...]
H A DSpinner.java495 View sel = makeAndAddView(mSelectedPosition);
496 int width = sel.getMeasuredWidth();
508 sel.offsetLeftAndRight(selectedOffset);
H A DAbsListView.java2281 void positionSelector(int position, View sel) { argument
2287 selectorRect.set(sel.getLeft(), sel.getTop(), sel.getRight(), sel.getBottom());
2288 if (sel instanceof SelectionBoundsAdjuster) {
2289 ((SelectionBoundsAdjuster)sel).adjustListItemSelectionBounds(selectorRect);
2295 if (sel.isEnabled() != isChildViewEnabled) {
2434 public void setSelector(Drawable sel) { argument
2439 mSelector = sel;
[all...]
H A DGallery.java665 View sel = makeAndAddView(mSelectedPosition, 0, 0, true);
668 int selectedOffset = childrenLeft + (childrenWidth / 2) - (sel.getWidth() / 2) +
670 sel.offsetLeftAndRight(selectedOffset);
/frameworks/base/core/java/android/webkit/
H A DSelectActionModeCallback.java117 String sel= mWebView.getSelection();
119 mWebView.showFindDialog(sel, false);

Completed in 347 milliseconds