有谁知道怎么做?
谢谢
davIDbrown
Bitmap bitmap = BitmapFactory.decodeResource (getResources(),R.drawable.sticky_notes); // your bitmap ByteArrayOutputStream bs = new ByteArrayOutputStream(); bitmap.compress(Bitmap.CompressFormat.JPEG,50,bs); intent.putExtra("byteArray",bs.toByteArray());
接收活动:
if(getIntent().hasExtra("byteArray")) { ImageVIEw imv= new ImageVIEw(this); Bitmap bitmap = BitmapFactory.decodeByteArray( getIntent().getByteArrayExtra("byteArray"),getIntent().getByteArrayExtra("byteArray").length); imv.setimageBitmap(bitmap); }总结
以上是内存溢出为你收集整理的在Android中的PutExtra中传递图像全部内容,希望文章能够帮你解决在Android中的PutExtra中传递图像所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)