微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何在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

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐