투케이2K

611. (Android/Java) Intent.createChooser 사용해 텍스트 (text) 파일 공유 기능 구현 - Intent.ACTION_SEND 본문

Android

611. (Android/Java) Intent.createChooser 사용해 텍스트 (text) 파일 공유 기능 구현 - Intent.ACTION_SEND

투케이2K 2023. 7. 31. 08:09

[개발 환경 설정]

개발 툴 : AndroidStudio

 

[소스 코드]

 

        // ---------------------------------------------------------------
        // [로직 처리 실시]
        // ---------------------------------------------------------------
        try {

            Intent sharingIntent = new Intent(Intent.ACTION_SEND);
            
            sharingIntent.setType("text/plain"); // [공유 파일 타입]
            
            sharingIntent.putExtra(Intent.EXTRA_TEXT, "투케이 공유 TWOK"); // [전송할 텍스트 지정]
            
            startActivity(Intent.createChooser(sharingIntent,"파일을 공유합니다"));

        }
        catch (Exception e) {
            S_Log._printStackTrace_(A_Intro.this, "로직 처리 수행 에러", null, e);
        }

 

반응형
Comments