FullScreenRenderView.java
489 Bytes
package com.wd.player.widget;
import android.content.Context;
import android.util.AttributeSet;
class FullScreenRenderView extends AliyunRenderView{
public FullScreenRenderView(Context context) {
super(context);
}
public FullScreenRenderView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public FullScreenRenderView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}