Home | History | Annotate | Download | only in widget

Lines Matching refs:Bitmap

22 import android.graphics.Bitmap;
111 private Bitmap mBitmapBtnDefault;
112 private Bitmap mBitmapBtnTouched;
113 private Bitmap mBitmapCircleDefault;
114 private Bitmap mBitmapCircleGreen;
115 private Bitmap mBitmapCircleRed;
117 private Bitmap mBitmapArrowGreenUp;
118 private Bitmap mBitmapArrowRedUp;
279 // bitmaps have the size of the largest bitmap in this group
280 final Bitmap bitmaps[] = { mBitmapBtnDefault, mBitmapBtnTouched, mBitmapCircleDefault,
283 for (Bitmap bitmap : bitmaps) {
284 mBitmapWidth = Math.max(mBitmapWidth, bitmap.getWidth());
285 mBitmapHeight = Math.max(mBitmapHeight, bitmap.getHeight());
290 private Bitmap getBitmapFor(int resId) {
939 // offsets for centering the bitmap in the cell
945 // coincident with the circle bitmap's top edge.
946 Bitmap arrow = green ? mBitmapArrowGreenUp : mBitmapArrowRedUp;
950 // the up arrow bitmap is at 12:00, so find the rotation from x axis and add 90 degrees.
974 Bitmap outerCircle;
975 Bitmap innerCircle;