关于优酷开发sdkdemo的布局

playerActivity主要是前端播放展示:布局为R.layout.second,布局中YoukuPlayerView是用来展示播放器的。

通过mYoukuPlayerview.setSmallscreenLayoutParams、setFullScreenLayoutparams分别设置全屏和竖屏的布局参数参数为LayoutParams。

YoukuPlayerView分析:

 布局:

             通过整体布局yp_player_view来设置,其中有FitScaleImageView m w; include yp_player_continer w w;FrmeLayout id=player_holder_all m m .

             yp_player_container布局中:1.RelatvieLayout 2.RelatvieLayout id=space_left 0 0 2.RelativeLayout f f id=space_middle 3. Relativelayout id=space_top 0 0 3.NewSurfaceView f f  id=surface_view 3.TextView f f id=surface_view_debug 3.view id=surface_black f f 3. ImageView id=logo_view 50 50 3.RelativeLayout id=space_bottom 0 0   2.RelativeLayout id=space_right 0 0 

             FitScaleImageView:就是个IamageView

  布局逻辑:

               方法initLayout():来初始化相应的布局;初始化了相应的surfaceView,playback,logoView,playerDebugView,

               surfaceBlack,spaceMiddle等

                方法addLeftAndRight:带有虚拟键的4.4设备转屏时,临时通过surfaceview左右添加view

                方法setDebugtext:设置相应的debug信息到播放器界面上

                 方法initPlayerBlank():初始化播放画面四周的空白黑色区域

                 方法setFullscreenBack():全屏的时候设置全屏

                方法setVerticalLayout:设置竖屏布局

               


你可能感兴趣的:(优酷开放SDK)