我想在运行时用颜色设置表面视图边框。我正在这样做,但它不起作用
//Video View to play the vidoes ads.
surfaceView = new SurfaceView(context);
GradientDrawable drawable = new GradientDrawable();
drawable.setShape(GradientDrawable.RECTANGLE);
drawable.setStroke(5, Color.MAGENTA);
surfaceView.setBackgroundDrawable(drawable);
surfaceView.setPadding(10, 10, 10, 10);
当我设置这个然后视频停止显示。
请帮助我让它正常工作。
提前致谢