伦敦图像用按钮和视图代表ui的其余部分,因此它必须是整体可见的,这就是为什么我不能使用像添加android:background这样的解决方案作为像这样的半径的形状矩形:
<?xml version="1.0" enCoding="UTF-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID"> <solID androID:color="#FFFFFF"/> <stroke androID:wIDth="3dip" androID:color="#B1BCBE" /> <corners androID:radius="50dip"/> <padding androID:left="0dip" androID:top="0dip" androID:right="0dip" androID:bottom="0dip" /></shape>
当我尝试将androID:background作为椭圆形xml设置为SurfaceVIEw时,它也不起作用:
<?xml version="1.0" enCoding="utf-8"?><shape xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:shape="oval"> <size androID:wIDth="120dp" androID:height="120dp"/> <stroke androID:color="#FF000000" androID:wIDth="2dp" /></shape>
如果有可能以某种方式扩展SurfaceVIEw并使用它,我应该重写什么?
解决方法 嗯,我认为最简单的方法是在SurfaceVIEw上放置一个imageVIEw示例来自xml:
<relativeLayout ....> <SurfaceVIEw ... /> <ImageVIEw ... /></relativeLayout>总结
以上是内存溢出为你收集整理的Android:如何制作圆形相机预览?全部内容,希望文章能够帮你解决Android:如何制作圆形相机预览?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)