พื้นฐาน Android - การแชร์ข้อมูลไปยัง Facebook บน Android App

ฟังก์ชั่นการแชร์

private fun shareText2Facebook(){
    val intent = Intent()
    intent.action = Intent.ACTION_SEND
    intent.putExtra(Intent.EXTRA_TEXT, "hello world")
    intent.type = "text/plain"
    intent.setPackage("com.facebook.orca")  // เปลี่ยนเป็น package อื่นๆได้
    startActivity(intent)
}


ลองแชร์ลิงค์ PlayStore

https://play.google.com/store/apps/details?id=com.facebook.katana


ผลลัพธ์ที่ได้ในมุมมองมือถือ





ในมุมมองของโน๊ตบุ๊ค



หากจำเป็นต้องแชร์แบบใช้โมเดลเนื้อหา (Advance)

- ลิงก์
- รูปภาพ
- วิดีโอ
- มัลติมีเดีย (การผสมผสานทั้งรูปภาพและวิดีโอ)

ศึกษาได้จากที่นี่ครับ : https://developers.facebook.com/docs/sharing/android