암시적 의도를 사용하는 Android에서는 ACTION_SEND 작업을 사용하여 다른 응용 프로그램과 데이터를 보낼 수 있습니다. 데이터를 보내기 위해 Android 모바일의 기본 선택기를 열려면 Intent.createChooser()를 호출해야 합니다. Android 모바일에서는 같거나 다를 수 있습니다.
이 예는 Android에서 다른 애플리케이션과 앱 데이터를 공유하는 방법을 보여줍니다.
1단계 − Android Studio에서 새 프로젝트를 생성하고 파일 ⇒ 새 프로젝트로 이동하여 필요한 모든 세부 정보를 입력하여 새 프로젝트를 생성합니다.
2단계 − res/layout/activity_main.xml에 다음 코드를 추가합니다.
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:id="@+id/layout" android:gravity="center" android:layout_height="match_parent" android:orientation="vertical"> <TextView android:id="@+id/data" android:layout_width="match_parent" android:gravity="center" android:textSize="30sp" android:text="www.tutorialspoint.com" android:layout_height="wrap_content" /> </LinearLayout>
위의 코드에는 텍스트 보기가 포함되어 있으며 사용자가 텍스트 보기를 클릭하면 다른 응용 프로그램과 함께 텍스트 보기 데이터를 보냅니다.
3단계 − src/MainActivity.java
에 다음 코드 추가package com.example.andy.myapplication; import android.annotation.TargetApi; import android.content.Intent; import android.os.Build; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.TextView; public class MainActivity extends AppCompatActivity { public int counter; @TargetApi(Build.VERSION_CODES.O) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); final TextView textView = findViewById(R.id.data); textView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent i = new Intent(); i.setAction(Intent.ACTION_SEND); i.setType("text/plain"); i.putExtra(android.content.Intent.EXTRA_TEXT, textView.getText().toString()); startActivity(Intent.createChooser(i, "Share to")); } }); } }
위의 코드에는 textview가 포함되어 있는데, textview를 클릭하면 Intent를 사용하여 데이터를 보내게 됩니다.
4단계 − manifest.xml 파일 변경 불필요
응용 프로그램을 실행해 보겠습니다. 실제 Android 모바일 장치를 컴퓨터에 연결했다고 가정합니다. Android 스튜디오에서 앱을 실행하려면 프로젝트의 활동 파일 중 하나를 열고 아이콘 실행을 클릭하세요. 도구 모음에서. 모바일 장치를 옵션으로 선택한 다음 기본 화면을 표시할 모바일 장치를 확인하십시오 -
tutorialspoint.com을 클릭하면 아래와 같이 Android 기기에서 기본 선택기가 열리는 초기 화면입니다. -
해당 응용 프로그램을 통해 데이터를 보내려면 응용 프로그램에서 아무거나 선택하십시오. 한 사람에 대한 데이터를 보내거나 벽에 데이터를 게시할 수 있습니다. 이는 선택기 애플리케이션에 따라 다릅니다.