自定义Android VideoView界面的外观

时间:2011-08-28 03:37:54

标签: android video view progress-bar android-videoview

如何在Android中自定义VideoView界面的外观?我特别喜欢用我自己的按钮替换进度条,黄色背景和媒体(暂停/播放)按钮。

XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<VideoView
  android:id="@+id/surface_view"
  android:layout_width="320px"
  android:layout_height="240px"/>
</LinearLayout>

代码

public class VideoViewExample extends Activity {
   private VideoView mVideoView;

   @Override
   public void onCreate(Bundle icicle) {
     super.onCreate(icicle);
     setContentView(R.layout.main);
     mVideoView = (VideoView) findViewById(R.id.surface_view);
     mVideoView.setVideoURI(Uri.parse("android.resource://" + getPackageName() +"/"+R.raw.sm));
     mVideoView.setMediaController(new MediaController(this));
     mVideoView.requestFocus();
     mVideoView.start();
   }
}

1 个答案:

答案 0 :(得分:0)

  

我特别喜欢用我自己的按钮替换进度条,黄色背景和媒体(暂停/播放)按钮。

这不是“VideoView用户界面”。那是MediaController。可以设置MediaController的样式,但我刚刚选择将其替换为the last time I encountered this issue