Home | History | Annotate | Download | only in neko

Lines Matching refs:Drawable

23 import android.graphics.drawable.Drawable;
24 import android.graphics.drawable.Icon;
34 public class Cat extends Drawable {
126 public static void tint(int color, Drawable ... ds) {
127 for (Drawable d : ds) {
184 tint(0xFFFFFFFF, (Drawable) choose(nsr, D.foot1, D.foot2, D.foot3, D.foot4));
211 .setSmallIcon(Icon.createWithResource(context, R.drawable.stat_icon))
244 final Drawable d = D.drawingOrder[i];
350 public Drawable leftEar;
351 public Drawable rightEar;
352 public Drawable rightEarInside;
353 public Drawable leftEarInside;
354 public Drawable head;
355 public Drawable faceSpot;
356 public Drawable cap;
357 public Drawable mouth;
358 public Drawable body;
359 public Drawable foot1;
360 public Drawable leg1;
361 public Drawable foot2;
362 public Drawable leg2;
363 public Drawable foot3;
364 public Drawable leg3;
365 public Drawable foot4;
366 public Drawable leg4;
367 public Drawable tail;
368 public Drawable leg2Shadow;
369 public Drawable tailShadow;
370 public Drawable tailCap;
371 public Drawable belly;
372 public Drawable back;
373 public Drawable rightEye;
374 public Drawable leftEye;
375 public Drawable nose;
376 public Drawable bowtie;
377 public Drawable collar;
378 public Drawable[] drawingOrder;
381 body = context.getDrawable(R.drawable.body);
382 head = context.getDrawable(R.drawable.head);
383 leg1 = context.getDrawable(R.drawable.leg1);
384 leg2 = context.getDrawable(R.drawable.leg2);
385 leg3 = context.getDrawable(R.drawable.leg3);
386 leg4 = context.getDrawable(R.drawable.leg4);
387 tail = context.getDrawable(R.drawable.tail);
388 leftEar = context.getDrawable(R.drawable.left_ear);
389 rightEar = context.getDrawable(R.drawable.right_ear);
390 rightEarInside = context.getDrawable(R.drawable.right_ear_inside);
391 leftEarInside = context.getDrawable(R.drawable.left_ear_inside);
392 faceSpot = context.getDrawable(R.drawable.face_spot);
393 cap = context.getDrawable(R.drawable.cap);
394 mouth = context.getDrawable(R.drawable.mouth);
395 foot4 = context.getDrawable(R.drawable.foot4);
396 foot3 = context.getDrawable(R.drawable.foot3);
397 foot1 = context.getDrawable(R.drawable.foot1);
398 foot2 = context.getDrawable(R.drawable.foot2);
399 leg2Shadow = context.getDrawable(R.drawable.leg2_shadow);
400 tailShadow = context.getDrawable(R.drawable.tail_shadow);
401 tailCap = context.getDrawable(R.drawable.tail_cap);
402 belly = context.getDrawable(R.drawable.belly);
403 back = context.getDrawable(R.drawable.back);
404 rightEye = context.getDrawable(R.drawable.right_eye);
405 leftEye = context.getDrawable(R.drawable.left_eye);
406 nose = context.getDrawable(R.drawable.nose);
407 collar = context.getDrawable(R.drawable.collar);
408 bowtie = context.getDrawable(R.drawable.bowtie);
411 private Drawable[] getDrawingOrder() {
412 return new Drawable[] {