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.java150 TabView tv = buildTabView(tab);
151 mTabs.addTab(tv);
427 private void animateTabOut(final Tab tab, final TabView tv) { argument
428 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 1.0f, 0.0f);
429 ObjectAnimator scaley = ObjectAnimator.ofFloat(tv, "scaleY", 1.0f, 0.0f);
430 ObjectAnimator alpha = ObjectAnimator.ofFloat(tv, "alpha", 1.0f, 0.0f);
442 mTabs.removeTab(tv);
459 private void animateTabIn(final Tab tab, final TabView tv) { argument
460 ObjectAnimator scalex = ObjectAnimator.ofFloat(tv, "scaleX", 0.0f, 1.0f);
479 mTabs.addTab(tv);
[all...]
/packages/apps/Calendar/src/com/android/calendar/
H A DEventInfoFragment.java1724 private void addFieldToAccessibilityEvent(List<CharSequence> text, TextView tv, argument
1727 if (tv != null) {
1728 cs = tv.getText();

Completed in 123 milliseconds