Home | History | Annotate | Download | only in browser

Lines Matching refs:tab

90     // in case of a configuration change, adjust tab width
129 void addTab(View tab) {
130 mContentView.addView(tab);
131 tab.setActivated(false);
134 void removeTab(View tab) {
135 int ix = mContentView.indexOfChild(tab);
141 mContentView.removeView(tab);
162 // private void animateIn(View tab) {
163 // ObjectAnimator animator = ObjectAnimator.ofInt(tab, "TranslationX", 500, 0);
168 // private void animateOut(final View tab) {
170 // tab, "TranslationX", 0, getScrollX() - tab.getRight());
175 // mContentView.removeView(tab);
238 View tab = getChildAt(i);
239 int w = tab.getRight() - tab.getLeft();
240 tab.layout(nextLeft, tab.getTop(), nextLeft + w, tab.getBottom());