NIMSDK-AOS  9.16.0
AVChatSurfaceViewRenderer.java
浏览该文件的文档.
1 /*
2  * Copyright (c) 2014-2018 NetEase, Inc.
3  * All right reserved.
4  */
5 
6 package com.netease.nimlib.sdk.avchat.video;
7 
8 import android.content.Context;
9 import android.util.AttributeSet;
10 import com.netease.nrtc.video.render.SurfaceViewRenderer;
11 
12 
16 public class AVChatSurfaceViewRenderer extends SurfaceViewRenderer {
17 
18  public AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i) {
19  super(context, attributeSet, i);
20  }
21 
22  public AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i, int i1) {
23  super(context, attributeSet, i, i1);
24  }
25 
26  public AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet) {
27  super(context, attributeSet);
28  }
29 
30  public AVChatSurfaceViewRenderer(Context context) {
31  super(context);
32  }
33 
34 }
AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i, int i1)
AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i)
AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet)