您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Android中怎么實現多媒體播放功能,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
Android多媒體播放代碼:
import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.VideoView; public class VideoPlayer extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); final VideoView w =(VideoView)findViewById(R.id.vdoplayer); Button cmdload = (Button)this.findViewById(R.id.cmd_load); cmdload.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { // TODO Auto-generated method stub w.setVideoPath("/sdcard/android/kongfu.mp4"); } } ); Button cmdplay = (Button)this.findViewById(R.id.cmd_play); cmdplay.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { // TODO Auto-generated method stub w.start(); } } ); Button cmdpause = (Button)this.findViewById(R.id.cmd_pause); cmdpause.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { // TODO Auto-generated method stub w.pause(); } } ); } } main.xml:
Android多媒體播放實現代碼:
< ?xml version="1.0" encoding="utf-8"?>
< LinearLayout xmlns:android=
"http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >< Button android:id="@+id/cmd_load"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="load" />< Button android:id="@+id/cmd_play"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="Play" />< Button android:id="@+id/cmd_pause"
android:layout_width="fill_parent"
android:layout_height="wrap_content" android:text="pause" />< VideoView android:id="@+id/vdoplayer"
android:layout_width="fill_parent"
android:layout_height="300px" />< /LinearLayout>
關于Android中怎么實現多媒體播放功能就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。