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

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
StringTexture.java 23 import android.graphics.Typeface;
64 paint.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
AlbumLabelMaker.java 26 import android.graphics.Typeface;
94 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));
  /development/apps/FontLab/src/com/android/fontlab/
FontLab.java 24 import android.graphics.Typeface;
119 Typeface tf = mColumn1.getTypeface();
147 private static final Typeface sTypeface[] = {
148 Typeface.SANS_SERIF,
149 Typeface.SERIF,
150 Typeface.MONOSPACE
156 private static boolean canSupportStyle(Typeface tf, int styleBits) {
157 tf = Typeface.create(tf, styleBits);
162 Typeface tf = Typeface.create(sTypeface[mFontIndex], mFontStyle)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
MeasureText.java 64 mPaint.setTypeface(Typeface.create(Typeface.SERIF,
65 Typeface.ITALIC));
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 25 * The Typeface class specifies the typeface and intrinsic style of a font.
30 public class Typeface {
32 /** The default NORMAL typeface object */
33 public static final Typeface DEFAULT;
35 * The default BOLD typeface object. Note: this may be not actually be
39 public static final Typeface DEFAULT_BOLD;
40 /** The NORMAL style of the default sans serif typeface. */
41 public static final Typeface SANS_SERIF;
42 /** The NORMAL style of the default serif typeface. *
113 Typeface typeface; local
    [all...]
  /frameworks/base/services/java/com/android/server/wm/
Watermark.java 24 import android.graphics.Typeface;
87 mTextPaint.setTypeface(Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD));
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactListPinnedHeaderView.java 24 import android.graphics.Typeface;
87 mHeaderTextView.setTypeface(mHeaderTextView.getTypeface(), Typeface.BOLD);
ContactListItemView.java 32 import android.graphics.Typeface;
775 mHeaderTextView.setTypeface(mHeaderTextView.getTypeface(), Typeface.BOLD);
    [all...]
  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 22 import android.graphics.Typeface;
102 sPaint.setTypeface(Typeface.DEFAULT);
  /packages/apps/Calendar/src/com/android/calendar/
DayView.java 37 import android.graphics.Typeface;
173 private final Typeface mBold = Typeface.DEFAULT_BOLD;
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 173 milliseconds