Searched defs:tv (Results 1 - 4 of 4) sorted by relevance

/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
H A DTutorialEN.java137 private int chooseSize(PopupWindow pop, View parentView, CharSequence text, TextView tv) { argument
138 int wid = tv.getPaddingLeft() + tv.getPaddingRight();
139 int ht = tv.getPaddingTop() + tv.getPaddingBottom();
147 Layout l = new StaticLayout(text, tv.getPaint(), cap,
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
H A DTutorialJAJP.java139 private int chooseSize(PopupWindow pop, View parentView, CharSequence text, TextView tv) { argument
140 int wid = tv.getPaddingLeft() + tv.getPaddingRight();
141 int ht = tv.getPaddingTop() + tv.getPaddingBottom();
149 Layout l = new StaticLayout(text, tv.getPaint(), cap,
/packages/apps/Browser/src/com/android/browser/
H A DTabBar.java153 TabView tv = buildTabView(tab);
154 mTabs.addTab(tv);
443 private void animateTabOut(final Tab tab, final TabView tv) { argument
444 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 1.0f, 0.0f);
445 ObjectAnimator scaley = ObjectAnimator.ofFloat(tv, "scaleY", 1.0f, 0.0f);
446 ObjectAnimator alpha = ObjectAnimator.ofFloat(tv, "alpha", 1.0f, 0.0f);
458 mTabs.removeTab(tv);
475 private void animateTabIn(final Tab tab, final TabView tv) { argument
476 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 0.0f, 1.0f);
495 mTabs.addTab(tv);
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java1338 private void addFieldToAccessibilityEvent(List<CharSequence> text, TextView tv, argument
1341 if (tv != null) {
1342 cs = tv.getText();

Completed in 168 milliseconds