如何更改
自定义的SurfaceView宽度和高度.
这可能吗?
我有同样的问题.但这肯定是有效的,只需要检查你设置的是什么样的LaoutParams.我有同样的问题,因为我正在使用FrameLaoutPrams而不是LayoutParams.我需要这样设置:
android.widget.FrameLayout.LayoutParams params = new android.widget.FrameLayout.LayoutParams(width,height);
surface.setLayoutParams(params);
原文链接:https://www.f2er.com/android/311011.html