Home | History | Annotate | Download | only in bluetooth

Lines Matching defs:drawable

21 import android.graphics.drawable.Drawable;
36 final Drawable drawable = Utils.getBluetoothDrawable(RuntimeEnvironment.application,
37 R.drawable.ic_bt_laptop, BluetoothDevice.BATTERY_LEVEL_UNKNOWN, 1 /* iconScale */);
39 assertThat(drawable).isNotInstanceOf(BluetoothDeviceLayerDrawable.class);
44 final Drawable drawable = Utils.getBluetoothDrawable(RuntimeEnvironment.application,
45 R.drawable.ic_bt_laptop, 10 /* batteryLevel */, 1 /* iconScale */);
47 assertThat(drawable).isInstanceOf(BluetoothDeviceLayerDrawable.class);