[Android] SMS/MMS 보내는 기능 붙이는 방법
2015. 11. 20.
프로젝트를 진행하다 보니 SMS를 보내야 하는 상황이 생겼습니다. 누군가에게 초대 메시지를 보낸다거나 할때 사용하면 좋을 것 같습니다. 이 기능 연동은 아주 쉽기 때문에 최대한 간단히 포스팅을 하도록 하겠습니다. 코드는 아래처럼 구현해 주시면 됩니다. try { ContentResolver contentR = context.getContentResolver(); Bitmap img = BitmapFactory.decodeByteArray(imgByteArr, 0, length); String path = MediaStore.Images.Media.insertImage(contentR, img, "저장할 이름", "저장 설명"); Uri uri = Uri.parse(path); OutputStream ou..