Home | History | Annotate | Download | only in com.example.android.wearable.agendadata

Lines Matching defs:bitmap

40 import android.graphics.Bitmap;
194 Bitmap bitmap = BitmapFactory.decodeResource(res, R.drawable.nobody);
195 return Asset.createFromBytes(toByteArray(bitmap));
208 Bitmap bitmap = BitmapFactory.decodeStream(inputStream);
209 if (bitmap != null) {
210 return Asset.createFromBytes(toByteArray(bitmap));
223 private static byte[] toByteArray(Bitmap bitmap) {
225 bitmap.compress(Bitmap.CompressFormat.PNG, 100, stream);