我有一个FrameLayout
包含 aCameraPreview
和 a RelativeLayout
。RelativeLayout
包含一些ImageButton
s 。因此:
<FrameLayout>
<CameraPreview/>
<RelativeLayout>
<ImageButton/>
<ImageButton/>
</RelativeLayout>
</FrameLayout>
我正在使用CameraPreview
实时预览来自相机的图像。这可以正常工作。s显示ImageButton
可绘制位图,并出现在相机预览上。
问题在于按钮是半透明的:相机图像在其背景中可见。我希望它们完全不透明,以使它们更明显。我该怎么做呢?
我试过在按钮上调用 SetAlpha() 但这似乎没有任何效果。
谁能建议我如何使按钮不透明?