VideoView MediaController样式问题

时间:2014-03-12 11:15:36

标签: android video android-videoview mediacontroller

我遇到的情况是,我使用standard VideoViewMediaController object组合传输视频。就播放而言,一切都有效,但是加载视频时ProgressBars的外观具有早期版本的android的外观。

我在ProgressBars遇到了类似的问题,但changing the style至{34} "Widget.ProgressBar.Horizontal"

进度条的Widget.Holo.ProgressBar.Horizontal"解决了这个问题

VideoView是否有任何相似内容?

目前我有:

The old Android appearance that I don't want

但我希望有类似的内容:

The new appearance which I would like

这些屏幕来自运行KitKat的Nexus 4。

由于

1 个答案:

答案 0 :(得分:4)

您应该为清单中的活动定义Holo样式,或者自己扩展它。 例如:

<activity android:name=".activity.MyPlayerActivity" android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" android:screenOrientation="sensorLandscape"/>