HomeSort by relevance Sort by last modified time
    Searched defs:Typeface (Results 1 - 25 of 36) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
StringTexture.java 23 import android.graphics.Typeface;
63 paint.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
  /cts/tests/tests/graphics/src/android/graphics/cts/
TypefaceTest.java 20 import android.graphics.Typeface;
24 import android.graphics.Typeface;
41 // list of family names to try when attempting to find a typeface with a given style
46 * Create a typeface of the given style. If the default font does not support the style,
48 * @return The typeface or null, if no typeface with the given style can be found.
50 private Typeface createTypeface(int style) {
52 Typeface tf = Typeface.create(family, style);
62 Typeface typeface = createTypeface(Typeface.BOLD) local
92 Typeface typeface = Typeface.create(DEFAULT, Typeface.NORMAL); local
106 Typeface typeface = Typeface.defaultFromStyle(Typeface.NORMAL); local
133 Typeface typeface = Typeface.createFromAsset(getContext().getAssets(), "samplefont.ttf"); local
146 Typeface typeface = Typeface.createFromFile(file); local
159 Typeface typeface = Typeface.createFromFile(obtainPath()); local
    [all...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader2.java 21 import android.graphics.Typeface;
154 // Create a TextView wrapper, and change the typeface, if necessary.
162 Typeface type = view.getTypeface();
163 view.setTypeface(Typeface.create(type, Typeface.BOLD_ITALIC));
MyRssReader3.java 22 import android.graphics.Typeface;
162 // Create a TextView wrapper, and change the typeface, if necessary.
168 Typeface type = view.getTypeface();
169 view.setTypeface(Typeface.create(type, Typeface.BOLD_ITALIC));
MyRssReader4.java 23 import android.graphics.Typeface;
189 Typeface type = view.getTypeface();
190 view.setTypeface(Typeface.create(type, Typeface.BOLD_ITALIC));
MyRssReader5.java 24 import android.graphics.Typeface;
232 Typeface type = view.getTypeface();
233 view.setTypeface(Typeface.create(type, Typeface.BOLD_ITALIC));
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AccountItemView.java 19 import android.graphics.Typeface;
88 mAccountDisplayName.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
94 mAccountDisplayName.setTypeface(Typeface.DEFAULT);
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 37 * The Typeface class specifies the typeface and intrinsic style of a font.
42 public class Typeface {
44 private static String TAG = "Typeface";
46 /** The default NORMAL typeface object */
47 public static final Typeface DEFAULT;
49 * The default BOLD typeface object. Note: this may be not actually be
53 public static final Typeface DEFAULT_BOLD;
54 /** The NORMAL style of the default sans serif typeface. */
55 public static final Typeface SANS_SERIF
147 Typeface typeface; local
297 Typeface typeface; local
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/lettertiles/
LetterTileDrawable.java 28 import android.graphics.Typeface;
91 sPaint.setTypeface(Typeface.create(
92 res.getString(R.string.letter_tile_letter_font_family), Typeface.NORMAL));
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MeasureText.java 64 mPaint.setTypeface(Typeface.create(Typeface.SERIF,
65 Typeface.ITALIC));
  /frameworks/base/services/core/java/com/android/server/wm/
Watermark.java 24 import android.graphics.Typeface;
89 mTextPaint.setTypeface(Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumLabelMaker.java 25 import android.graphics.Typeface;
85 paint.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
PlayerSetupActivity.java 29 import android.graphics.Typeface;
151 buttonCopy.setTypeface(child.getTypeface(), Typeface.BOLD);
254 button.setTypeface(mBobButton.getTypeface(), Typeface.BOLD);
  /frameworks/base/core/java/android/widget/
SimpleMonthView.java 28 import android.graphics.Typeface;
186 p.setTypeface(Typeface.create(fontFamily, 0));
255 mMonthPaint.setTypeface(Typeface.create(monthTypeface, 0));
261 mDayOfWeekPaint.setTypeface(Typeface.create(dayOfWeekTypeface, 0));
273 mDayPaint.setTypeface(Typeface.create(dayTypeface, 0));
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
MonthView.java 26 import android.graphics.Typeface;
285 mMonthTitlePaint.setTypeface(Typeface.create(mMonthTitleTypeface, Typeface.BOLD));
309 mMonthDayLabelPaint.setTypeface(Typeface.create(mDayOfWeekTypeface, Typeface.NORMAL));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListItemView.java 27 import android.graphics.Typeface;
234 mTextHighlighter = new TextHighlighter(Typeface.BOLD);
287 mTextHighlighter = new TextHighlighter(Typeface.BOLD);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java 37 import android.graphics.Typeface;
173 private final Typeface mBold = Typeface.DEFAULT_BOLD;
    [all...]
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/19/
android.jar 

Completed in 805 milliseconds

1 2