ในบางสถานการณ์ เราควรเปิดแอปพลิเคชัน you tube จากแอปพลิเคชันของเราเพื่อแสดงวิดีโอบางรายการ ตัวอย่างนี้สาธิตเกี่ยวกับวิธีการที่แอป YouTube สำหรับ 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:id="@+id/parent" xmlns:tools="https://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:gravity="center" android:orientation="vertical"> <TextView android:id="@+id/openYoutube" android:text="Open youtube application" android:textSize="20sp" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
ในโค้ดด้านบนนี้ เราได้ใช้มุมมองข้อความแล้ว เมื่อคุณคลิกดูข้อความจะเป็นการเปิดแอปพลิเคชัน YouTube
ขั้นตอนที่ 3 − เพิ่มรหัสต่อไปนี้ใน src/MainActivity.java
package com.example.andy.myapplication; import android.content.ActivityNotFoundException; import android.content.Intent; import android.net.Uri; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.widget.TextView; public class MainActivity extends AppCompatActivity { @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN) @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); TextView openYoutube = findViewById(R.id.openYoutube); openYoutube.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Intent webIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.youtube.com/watch?v=5X7WWVTrBvM")); try { MainActivity.this.startActivity(webIntent); } catch (ActivityNotFoundException ex) { } } }); } }
ในโค้ดด้านบนนี้ เราได้ใช้มุมมองข้อความ เมื่อผู้ใช้คลิกดูข้อความ จะเป็นการเปิด YouTube ตามที่แสดงด้านล่าง -
Intent webIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.youtube.com/watch?v=5X7WWVTrBvM")); try { MainActivity.this.startActivity(webIntent); } catch (ActivityNotFoundException ex) { }
มาลองเรียกใช้แอปพลิเคชันของคุณกัน ฉันคิดว่าคุณได้เชื่อมต่ออุปกรณ์มือถือ Android จริงกับคอมพิวเตอร์ของคุณ ในการรันแอพจาก android studio ให้เปิดไฟล์กิจกรรมของโปรเจ็กต์แล้วคลิกไอคอน Run จากแถบเครื่องมือ เลือกอุปกรณ์มือถือของคุณเป็นตัวเลือก แล้วตรวจสอบอุปกรณ์มือถือของคุณซึ่งจะแสดงหน้าจอเริ่มต้นของคุณ -
ในหน้าจอด้านบนจะเป็นหน้าจอเริ่มต้นเมื่อผู้ใช้คลิกดูข้อความ จะเป็นการเปิด YouTube ดังภาพด้านล่าง -