0

過去2〜3週間から、私はビデオビューでYouTubeビデオを再生する方法を探していて、stackoverflowに投稿されているほとんどすべての方法を試しました. (ほとんどすべて...そして、私が言わなければならないことがたくさんあります)。しかし、どれも私のために働いているようには見えません。

android-youtube-player も試してみましたが、うまくいきません。

私の要件: Youtubeアプリを開きたくないので、VideoViewでYoutubeビデオを再生します(多くの理由)

作業コードを喜んで共有してくれる人がいれば、それは大きな助けになるでしょう。私はほとんどすべてを試しましたが、コーディングにうんざりしています。誰かがここで私を助けてくれることを願っています。

4

1 に答える 1

9

前述のよう 、開いている youtube player で youtube ビデオを再生できます

ここに作業サンプルを添付しました。(Drive is the best solution is the best solution が頭に浮かび、ctrl+s を押して rar ファイルを保存できます)。そこには 2 つのプロジェクトがあります。

  1. YouTubeTester - 私が行ったサンプルアプリ
  2. OpenYouTubeActivity -ここからフォームをダウンロードした YouTube プレーヤー

OpenYouTubeActivity プロジェクトの jar ファイルをプロジェクトに含めました。必要に応じて、OpenYouTubeActivity プロジェクトをプロジェクトのライブラリとして参照できます (プロジェクトをライブラリとして参照する場合は、jar ファイルを削除してください)。OpenYouTubeActivity のダウンロード ソースが更新され、Issueリストに記載されています。

VideoStream.java (Line: 30)
change: mUrl = lArgMap.get("url");
to:  mUrl = lArgMap.get("url") + "&signature=" + lArgMap.get("sig");

サンプルプロジェクトに戻ります。

マニフェスト ファイル

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.youtubetester"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />
    <!--INTERNET and  ACCESS_WIFI_STATE permissions are required. -->
    <uses-permission android:name="android.permission.INTERNET" /> 
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".YouTubeTest"
            android:label="@string/title_activity_you_tube_test" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!-- You should include following part orientation is your choice-->
        <activity
            android:name="com.keyes.youtube.OpenYouTubePlayerActivity"
            android:screenOrientation="landscape" >
        </activity>
    </application>

</manifest>

YouTubeTest アクティビティ クラス

package com.youtubetester;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

import com.keyes.youtube.OpenYouTubePlayerActivity;

public class YouTubeTest extends Activity {

    private Button button;
    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_you_tube_test);
        button =(Button) findViewById(R.id.play);
        /*
         * The Youtube URL that we get is something like following.
         * http://www.youtube.com/watch?v=J467jzLlDcc
         * We need the last part of the URL or id of the video-J467jzLlDcc **/


        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Intent lVideoIntent = new Intent(null, Uri
                        .parse("ytv://"+"J467jzLlDcc"),
                        YouTubeTest.this,
                        OpenYouTubePlayerActivity.class);
                startActivity(lVideoIntent);
                /*
                 * Please note only the id has been passed and prefix is "ytv" NOT "ytpl"*/
            }
        });
    }


}

レイアウト - activity_you_tube_test.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <Button
        android:id="@+id/play"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"
        tools:context=".YouTubeTest" />

</RelativeLayout>

これが役立つことを願っています。お困りのことがありましたらお尋ねください。私は OpenYouTubeActivity プロジェクトについて深く理解していませんが、お手伝いできることはあります。

于 2012-12-29T08:15:04.950 に答える