OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mBackgroundPaint
(Results
1 - 9
of
9
) sorted by null
/developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
ControllerView.java
57
private Paint
mBackgroundPaint
;
184
mBackgroundPaint
= new Paint();
185
mBackgroundPaint
.setStyle(Paint.Style.FILL);
186
mBackgroundPaint
.setDither(true);
187
mBackgroundPaint
.setAntiAlias(true);
347
canvas.drawRect(0, 0, getWidth(), getHeight(),
mBackgroundPaint
);
/developers/build/prebuilts/gradle/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/
DigitalWatchFaceService.java
154
Paint
mBackgroundPaint
;
208
mBackgroundPaint
= new Paint();
209
mBackgroundPaint
.setColor(mInteractiveBackgroundColor);
354
adjustPaintColorToCurrentMode(
mBackgroundPaint
, mInteractiveBackgroundColor,
429
updatePaintIfInteractive(
mBackgroundPaint
, color);
467
canvas.drawRect(0, 0, bounds.width(), bounds.height(),
mBackgroundPaint
);
AnalogComplicationWatchFaceService.java
162
private Paint
mBackgroundPaint
;
270
mBackgroundPaint
= new Paint();
271
mBackgroundPaint
.setColor(mBackgroundColor);
463
mBackgroundPaint
.setColor(Color.BLACK);
482
mBackgroundPaint
.setColor(mBackgroundColor);
[
all
...]
/developers/samples/android/wearable/wear/WatchFace/Wearable/src/main/java/com/example/android/wearable/watchface/watchface/
DigitalWatchFaceService.java
154
Paint
mBackgroundPaint
;
208
mBackgroundPaint
= new Paint();
209
mBackgroundPaint
.setColor(mInteractiveBackgroundColor);
354
adjustPaintColorToCurrentMode(
mBackgroundPaint
, mInteractiveBackgroundColor,
429
updatePaintIfInteractive(
mBackgroundPaint
, color);
467
canvas.drawRect(0, 0, bounds.width(), bounds.height(),
mBackgroundPaint
);
AnalogComplicationWatchFaceService.java
162
private Paint
mBackgroundPaint
;
270
mBackgroundPaint
= new Paint();
271
mBackgroundPaint
.setColor(mBackgroundColor);
463
mBackgroundPaint
.setColor(Color.BLACK);
482
mBackgroundPaint
.setColor(mBackgroundColor);
[
all
...]
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DigitalWatchFaceService.java
148
Paint
mBackgroundPaint
;
202
mBackgroundPaint
= new Paint();
203
mBackgroundPaint
.setColor(mInteractiveBackgroundColor);
348
adjustPaintColorToCurrentMode(
mBackgroundPaint
, mInteractiveBackgroundColor,
423
updatePaintIfInteractive(
mBackgroundPaint
, color);
461
canvas.drawRect(0, 0, bounds.width(), bounds.height(),
mBackgroundPaint
);
AnalogWatchFaceService.java
98
private Paint
mBackgroundPaint
;
148
mBackgroundPaint
= new Paint();
149
mBackgroundPaint
.setColor(Color.BLACK);
361
canvas.drawBitmap(mGrayBackgroundBitmap, 0, 0,
mBackgroundPaint
);
363
canvas.drawBitmap(mBackgroundBitmap, 0, 0,
mBackgroundPaint
);
442
canvas.drawRect(mPeekCardBounds,
mBackgroundPaint
);
ComplicationSimpleWatchFaceService.java
120
private Paint
mBackgroundPaint
;
194
mBackgroundPaint
= new Paint();
195
mBackgroundPaint
.setColor(Color.BLACK);
560
canvas.drawBitmap(mGrayBackgroundBitmap, 0, 0,
mBackgroundPaint
);
562
canvas.drawBitmap(mBackgroundBitmap, 0, 0,
mBackgroundPaint
);
706
canvas.drawRect(mPeekCardBounds,
mBackgroundPaint
);
SweepWatchFaceService.java
89
private Paint
mBackgroundPaint
;
120
mBackgroundPaint
= new Paint();
121
mBackgroundPaint
.setColor(Color.BLACK);
326
canvas.drawBitmap(mGrayBackgroundBitmap, 0, 0,
mBackgroundPaint
);
328
canvas.drawBitmap(mBackgroundBitmap, 0, 0,
mBackgroundPaint
);
407
canvas.drawRect(mPeekCardBounds,
mBackgroundPaint
);
Completed in 164 milliseconds