Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Android

จะแชร์ข้อมูลแอพกับแอพอื่นใน Android ได้อย่างไร?


ใน Android โดยใช้เจตนาโดยนัย เราสามารถส่งข้อมูลกับแอปพลิเคชันอื่นโดยใช้การกระทำ ACTION_SEND เราต้องเรียก Intent.createChooser() เพื่อเปิดตัวเลือกเริ่มต้นของมือถือ Android เพื่อส่งข้อมูล อาจเหมือนหรือต่างกันในมือถือ 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>

ในโค้ดด้านบนนี้ ประกอบด้วย textview เมื่อผู้ใช้คลิกที่ text view จะเป็นการส่งข้อมูล textview กับแอปพลิเคชันอื่น

ขั้นตอนที่ 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 studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์ของคุณแล้วคลิก Run Icon จะแชร์ข้อมูลแอพกับแอพอื่นใน Android ได้อย่างไร? จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก แล้วตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ -

จะแชร์ข้อมูลแอพกับแอพอื่นใน Android ได้อย่างไร?

นี่คือหน้าจอเริ่มต้นเมื่อคุณคลิกที่ tutorialspoint.com มันจะเปิดตัวเลือกเริ่มต้นจากอุปกรณ์ Android ของคุณดังที่แสดงด้านล่าง -

จะแชร์ข้อมูลแอพกับแอพอื่นใน Android ได้อย่างไร?

เลือกรายการใดก็ได้ในแอปพลิเคชันเพื่อส่งข้อมูลผ่านแอปพลิเคชันนั้น เราสามารถส่งข้อมูลสำหรับคนเดียวหรือโพสต์ข้อมูลบนวอลล์ของคุณได้ ขึ้นอยู่กับแอปพลิเคชันของตัวเลือก