其他分享
首页 > 其他分享> > android – 如何使用TextureView代替SurfaceView与ExoPlayer的PlayerView?

android – 如何使用TextureView代替SurfaceView与ExoPlayer的PlayerView?

作者:互联网

我知道可以在ExoPlayer中使用TextureView.但我找不到任何关于如何以适当的方式实现此功能的示例.你能帮我解决这个问题吗?

解决方法:

PlayerView有一个xml属性surface_type,您可以选择是否要使用SurfaceView或TextureView.

(注意:SimpleExoPlayerView在最近的版本中已经重命名为PlayerView,因为它只依赖于Player接口,而不再依赖于SimpelExoPlayerView.)

您可以选择texture_view,surface_view(默认)或none.有关详情,请参见the main section of the JavaDoc of PlayerView.

<com.google.android.exoplayer2.ui.PlayerView android:id="@+id/player_view"
     app:surface_type="texture_view"
     android:layout_width="match_parent"
     android:layout_height="match_parent"/>

标签:android,exoplayer,exoplayer2-x
来源: https://codeday.me/bug/20190722/1500413.html