Home | History | Annotate | Download | only in systemui

Lines Matching refs:layers

40     public HardwareBgDrawable(boolean roundTop, Drawable[] layers) {
41 super(layers);
42 if (layers.length != 2) {
43 throw new IllegalArgumentException("Need 2 layers");
46 mLayers = layers;
51 final Drawable[] layers;
53 layers = new Drawable[]{
58 layers = new Drawable[]{
64 layers[1].setTint(Utils.getColorAttr(context, android.R.attr.colorPrimaryDark));
65 return layers;