NIMSDK-AOS  9.21.10
AVChatSurfaceViewRenderer.java
浏览该文件的文档.
1 /*
2  * Copyright (c) 2014-2018 NetEase, Inc.
3  * All right reserved.
4  */
5 
6 package com.netease.nimlib.sdk.avchat.model;
7 
8 import android.content.Context;
9 import android.util.AttributeSet;
10 
11 import com.netease.nrtc.video.render.SurfaceViewRenderer;
12 
13 
14 // 请保留,兼容老的xml
15 
16 /**
17  * 视频画布 ,不推荐使用,参考 {@link com.netease.nimlib.sdk.avchat.video.AVChatSurfaceViewRenderer}
18  */
19 @Deprecated
20 public class AVChatSurfaceViewRenderer extends SurfaceViewRenderer {
21 
22  public AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i) {
23  super(context, attributeSet, i);
24  }
25 
26  public AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i, int i1) {
27  super(context, attributeSet, i, i1);
28  }
29 
30  public AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet) {
31  super(context, attributeSet);
32  }
33 
34  public AVChatSurfaceViewRenderer(Context context) {
35  super(context);
36  }
37 
38 }
AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet)
AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i)
AVChatSurfaceViewRenderer(Context context, AttributeSet attributeSet, int i, int i1)
视频画布 ,不推荐使用,参考 com.netease.nimlib.sdk.avchat.video.AVChatSurfaceViewRenderer ...