admin
2021-07-28 c0269fcfa876b9c5cf309b2006462b4d09c5ef95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.hanju.video.app.ui.sohuutils;
 
import android.app.Activity;
 
import com.sohuvideo.api.SohuPlayerItemBuilder;
 
public class LiveControllerPopWindow extends SohuControllerWindow {
 
 
    public LiveControllerPopWindow(Activity context) {
        super(context);
        mContext = context;
        setDisplayModeType(MODE_TYPE.MODE_LIVE);
    }
 
    public LiveControllerPopWindow(Activity context, int width, int height) {
        super(context, width, height);
    }
 
    @Override
    public void setCurrentPlayingIndex(SohuPlayerItemBuilder builder, int index) {
        this.activeItem = builder;
    }
 
}