private void addAttachment(int type) {
   Log.w("ComposeMessageActivity", "Selected: " + type);
   switch (type) {
     case AttachmentTypeSelectorAdapter.ADD_IMAGE:
       AttachmentManager.selectImage(this, PICK_IMAGE);
       break;
     case AttachmentTypeSelectorAdapter.ADD_VIDEO:
       AttachmentManager.selectVideo(this, PICK_VIDEO);
       break;
     case AttachmentTypeSelectorAdapter.ADD_SOUND:
       AttachmentManager.selectAudio(this, PICK_AUDIO);
       break;
   }
 }