天天看點

簡單的調用本地伺服器播放網絡視訊

下抿的

xml檔案布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <Button
       android:text="播放網絡視訊"
        android:id="@+id/button"
        android:layout_width="fill_parent"
        android:layout_height="40dp"
        android:layout_alignParentEnd="true" />
</RelativeLayout>      

mainactivity代碼:

package com.example.play;

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

public class MainActivity extends Activity implements View.OnClickListener {
    private Button button;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        button = (Button) findViewById(R.id.button);

        button.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
        int id = v.getId();
        switch(id){
            case R.id.button:
            {
                String url = "http://dvideo.spriteapp.cn/video/2016/0307/56dd1c633f680_wpd.mp4";               //這個位址很重要就是你要播放的網絡視訊的位址
                Uri uri = Uri.parse(url);
                Intent intent = new Intent(Intent.ACTION_VIEW,uri);
                intent.setType("video/*");
                intent.setDataAndType(uri , "video/*");
                startActivity(intent);
                break;
            }

        }
    }
}