안드로이드 스튜디오 텍스트 클릭 시 이메일 보내기 (Intent / email)

안녕하세요 오늘은 Intent와 ACTION_SEND를 활용해서

 

이메일 보내는 방법을 구현해보겠습니다.

 

앱 제작 이후에 문제점이나 문의할 수 있게 하는 용도로 많이 쓰는 방법입니다.

 

레이아웃부터 간단하게 구성해보겠습니다.

 

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MainActivity">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:gravity="center"
        android:background="@mipmap/bar">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="인텐트를 활용한 이메일 보내기"
            android:textStyle="bold"
            android:textColor="#fff"
            android:layout_gravity="center"
            android:textSize="30dp" />

    </LinearLayout>
    <LinearLayout
        android:orientation="horizontal"
        android:layout_marginTop="30dp"
        android:layout_width="wrap_content"
        android:layout_gravity="center"
        android:layout_height="wrap_content">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/email"/>

        <TextView
            android:id="@+id/btnemail"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="문의 하기"
            android:textStyle="bold"
            android:textColor="#D61414"
            android:textSize="40dp" />
    </LinearLayout>

</LinearLayout>

이렇게 구성하면 밑에처럼 레이아웃이 구성이 됩니다.

 

레이아웃

이제 문의하기 텍스트를 누르면 이메일을 보내는 코드를 구현하겠습니다.

 

밑에는 Mainactivity.java입니다.

 

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView email = (TextView) findViewById(R.id.btnemail);
        email.setOnClickListener(new TextView.OnClickListener() {
            public void onClick(View view) {
                Intent email = new Intent(Intent.ACTION_SEND);
                email.setType("plain/text");
                String[] address = {"email@address.com"};
                email.putExtra(Intent.EXTRA_EMAIL, address);
                email.putExtra(Intent.EXTRA_SUBJECT, "test@test");
                email.putExtra(Intent.EXTRA_TEXT, "내용 미리보기 (미리적을 수 있음)");
                startActivity(email);
            }
        });
    }
}

이렇게 java코드까지 작성하시면 끝납니다. 아주 간단하죠?

 

실행을 해서 문의 하기 버튼을 누르면 밑에처럼 이메일을 보내는 자동으로 실행됩니다.

 

 

수고하셨습니다.

댓글

Designed by JB FACTORY