Computer >> Máy Tính >  >> Lập trình >> Android

Cách ứng dụng YouTube dành cho Android phát video từ Intent

Trong một số tình huống, chúng tôi nên mở ứng dụng ống của bạn từ ứng dụng của chúng tôi để hiển thị một số video cụ thể. Ví dụ này minh họa về Cách ứng dụng YouTube dành cho Android Phát Video từ Intent.

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào 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>

Trong đoạn mã trên, chúng ta đã sử dụng chế độ xem văn bản. Khi bạn nhấp vào chế độ xem văn bản, nó sẽ mở ứng dụng YouTube.

Bước 3 - Thêm mã sau vào 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) {
            }
         }
      });
   }
}

Trong đoạn mã trên, chúng tôi đã sử dụng chế độ xem văn bản. Khi người dùng nhấp vào chế độ xem văn bản, nó sẽ mở YouTube như hình dưới đây -

Intent webIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.youtube.com/watch?v=5X7WWVTrBvM"));
try {
   MainActivity.this.startActivity(webIntent);
} catch (ActivityNotFoundException ex) {
}

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Cách ứng dụng YouTube dành cho Android phát video từ Intent

Ở màn hình trên, là màn hình ban đầu khi người dùng nhấp vào xem văn bản, nó sẽ mở YouTube như hình bên dưới -

Cách ứng dụng YouTube dành cho Android phát video từ Intent