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

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
StringTexture.java 23 import android.graphics.Typeface;
64 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/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;
89 mTextPaint.setTypeface(Typeface.create(Typeface.SANS_SERIF, Typeface.BOLD));
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListPinnedHeaderView.java 22 import android.graphics.Typeface;
87 mHeaderTextView.setTypeface(mHeaderTextView.getTypeface(), Typeface.BOLD);
ContactListItemView.java 27 import android.graphics.Typeface;
763 mHeaderTextView.setTypeface(mHeaderTextView.getTypeface(), Typeface.BOLD);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumLabelMaker.java 25 import android.graphics.Typeface;
85 paint.setTypeface(Typeface.defaultFromStyle(Typeface.BOLD));
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
ClockView.java 24 import android.graphics.Typeface;
96 AmPm(View parent, Typeface tf) {
157 mTimeView.setTypeface(Typeface.createFromFile(ANDROID_CLOCK_FONT_FILE));
  /packages/apps/Email/src/com/android/email/activity/
MessageListItemCoordinates.java 22 import android.graphics.Typeface;
102 sPaint.setTypeface(Typeface.DEFAULT);
  /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/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 26 import android.graphics.Typeface;
269 mMonthTitlePaint.setTypeface(Typeface.create(mMonthTitleTypeface, Typeface.BOLD));
293 mMonthDayLabelPaint.setTypeface(Typeface.create(mDayOfWeekTypeface, Typeface.NORMAL));
  /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/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 

Completed in 182 milliseconds

1 2