안드로이드 스튜디오 친구에게 앱 공유하기 (앱 내보내기)

안녕하세요 앱의 공유하기 기능을 누르면 이렇게 내 앱을 친구들이나 다른 소셜 네트워크에

 

내 앱을 공유하는 기능을 많이 구현합니다.

 

텍스트를 누르면 밑에처럼 앱을 공유할 수 있는 리스트가 뜨고 공유할 네트워크를 

 

누르면 내 앱이 공유가 되는 기능을 구현하겠습니다.

 

 

일단 레이아웃부터 간단하게 만들겠습니다.

 

<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/ppp"/>

        <TextView
            android:id="@+id/share"
            android:layout_gravity="center"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="친구에게 앱 공유 하기"
            android:textStyle="bold"
            android:textColor="#D61414"
            android:textSize="25dp" />
    </LinearLayout>

</LinearLayout>

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

 

사진은 별도로 넣으셔야 합니다.

 

레이아웃

이제 텍스트를 누르면 맨 처음 이미지처럼 친구에게 공유할 수 있는 기능을 구현하겠습니다.

 

밑에는 MainActivity.java입니다.

 

public class MainActivity extends AppCompatActivity {

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

        TextView textView = (TextView) findViewById(R.id.share);
        textView.setOnClickListener(new TextView.OnClickListener() {
            public void onClick(View view) {
                Intent msg = new Intent(Intent.ACTION_SEND);

                msg.addCategory(Intent.CATEGORY_DEFAULT);
                msg.putExtra(Intent.EXTRA_TEXT, "https://play.google.com/store/apps/details?id=패키지명");
                msg.putExtra(Intent.EXTRA_TITLE, "제목");
                msg.setType("text/plain");
                startActivity(Intent.createChooser(msg, "앱을 선택해 주세요"));

            }
        });
    }
}

패키 지명에 자신의 프로젝트 패키 지명을 넣으시면 됩니다.

 

수고하셨습니다.

댓글

Designed by JB FACTORY