如何在android videoplayer上手动绘制圆形,矩形

前端之家收集整理的这篇文章主要介绍了如何在android videoplayer上手动绘制圆形,矩形前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我只是想在 android中在视频播放器(同时视频播放)上手动绘制圆形,矩形或其他东西.是否可能?如果任何代码示例要好得多.

谢谢.

解决方法

你的问题已经有了答案:

See here

引自帖子:

SurfaceView probably does not work like a regular View in this
regard.

Instead,do the following:

  1. Put your SurfaceView inside of a
    FrameLayout or RelativeLayout in
    your layout XML file,since both of
    those allow stacking of widgets on
    the Z-axis
  2. Move your drawing logic
    into a separate custom View class
  3. Add an instance of the custom View
    class to the layout XML file as a
    child of the FrameLayout or
    RelativeLayout,but have it appear
    after the SurfaceView

This will cause your custom View class to appear to float above the
SurfaceView.

还有一个示例项目可满足您的需求

See here

原文链接:https://www.f2er.com/android/317696.html

猜你在找的Android相关文章