手機直播原始碼,Android studio 實現簡單的視訊播放

zhibo系統開發發表於2022-06-23

手機直播原始碼,Android studio 實現簡單的視訊播放

第一步:MainActivity

package com.videodemo;
import android.net.Uri;  
import android.support.v7.app.AppCompatActivity;  
import android.os.Bundle;  
import android.view.View;  
import android.widget.Button;  
import android.widget.MediaController;  
import android.widget.VideoView;  
  
public class MainActivity extends AppCompatActivity {  
    private VideoView videoView;  
    private Button btn_start,btn_end;  
    private MediaController mediaController;  
  
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);  
        initView();  
    }  
  
    private void initView() {  
        videoView= (VideoView) findViewById(R.id.videoView);  
        btn_start= (Button) findViewById(R.id.btn_start);  
        btn_end= (Button) findViewById(R.id.btn_end);  
  
  
        btn_start.setOnClickListener(new View.OnClickListener() {  
            @Override  
            public void onClick(View v) {  
                init();  
            }  
        });  
        btn_end.setOnClickListener(new View.OnClickListener() {  
            @Override  
            public void onClick(View v) {  
                videoView.stopPlayback();  
            }  
        });  
    }  
  
    private void init() {  
        videoView = (VideoView) findViewById(R.id.videoView);  
        mediaController = new MediaController(this);  
        //本地連線地址
        String uri = "android.resource://" + getPackageName() + "/" + R.raw.aas;  
        //網路連線地址
        String uri = "
        videoView.setVideoURI(Uri.parse(uri));  
        videoView.setMediaController(mediaController);  
        mediaController.setMediaPlayer(videoView);  
        videoView.requestFocus();  
        videoView.start();  
    }  
}


第二步:xml

<LinearLayout
    xmlns:android="
    xmlns:app="
    xmlns:tools="
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent"
    tools:context="com.jingna.stu.mytest.MainActivity">
    <VideoView
        android:id="@+id/videoView"
        android:layout_width="match_parent"
        android:layout_height="300dp" />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Button
            android:id="@+id/btn_start"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="開始"
            android:layout_marginLeft="20dp"/>
        <Button
            android:id="@+id/btn_end"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="結束" />
    </LinearLayout>
</LinearLayout>


以上就是 手機直播原始碼,Android studio 實現簡單的視訊播放,更多內容歡迎關注之後的文章 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2902411/,如需轉載,請註明出處,否則將追究法律責任。

相關文章