Advertisement
Guest User

Untitled

a guest
Aug 29th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. if(input==null)
  2. {
  3. Toast.makeText(getApplicationContext(), "NULL", Toast.LENGTH_SHORT).show();
  4. }else{
  5. bitmap = null;
  6. bitmap = BitmapFactory.decodeStream(input);
  7. if(bitmap!=null)
  8. iPhoto.setImageBitmap(bitmap);
  9. else
  10. Toast.makeText(getApplicationContext(), "BITMAP IS NULL", Toast.LENGTH_SHORT).show();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement