Android:通过相机预览透明 WebView

发布于 2024-10-19 07:29:03 字数 82 浏览 2 评论 0原文

只是一个一般性问题,也许有人有一个想法:是否可以在相机 SurfaceView 上拥有透明的 WebView 并使用 HTML/CSS 来创建覆盖层?

Just a general question and maybe someone has an idea: Is it possible to have a transparent WebView over a Camera SurfaceView and use HTML/CSS for creating the overlay?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

两相知 2024-10-26 07:29:03
<!-- in XML -->
        <WebView android:id="@+id/webkit"
            android:layout_width="200dip"
            android:layout_height="wrap_content"
            android:maxWidth="200dip"
            android:maxHeight="200dip"
            android:layout_marginBottom="4dip"
            android:adjustViewBounds="true"
            android:visibility="gone"
            />

            // onCreate
            barcodeBrowser = (WebView)findViewById(R.id.webkit);
            ...  // somewhere in runtime 
            barcodeBrowser.setVisibility(View.VISIBLE);
            String downloadLink = "http://stackoverflow.com/questions/1260422/setting-webview-background-image-to-a-resource-graphic-in-android";


            barcodeBrowser.setBackgroundColor(Color.argb(0,0,0,0));

            barcodeBrowser.setBackgroundResource(R.drawable.icon);
            barcodeBrowser.loadUrl(downloadLink);
<!-- in XML -->
        <WebView android:id="@+id/webkit"
            android:layout_width="200dip"
            android:layout_height="wrap_content"
            android:maxWidth="200dip"
            android:maxHeight="200dip"
            android:layout_marginBottom="4dip"
            android:adjustViewBounds="true"
            android:visibility="gone"
            />

            // onCreate
            barcodeBrowser = (WebView)findViewById(R.id.webkit);
            ...  // somewhere in runtime 
            barcodeBrowser.setVisibility(View.VISIBLE);
            String downloadLink = "http://stackoverflow.com/questions/1260422/setting-webview-background-image-to-a-resource-graphic-in-android";


            barcodeBrowser.setBackgroundColor(Color.argb(0,0,0,0));

            barcodeBrowser.setBackgroundResource(R.drawable.icon);
            barcodeBrowser.loadUrl(downloadLink);
风渺 2024-10-26 07:29:03

您是否尝试过为 WebView 设置透明背景并使用 FrameLayout 将其覆盖在 SurfaceView 之上?

Have you tried, setting transparent background for the WebView and overlaying it atop SurfaceView using FrameLayout ?

梦断已成空 2024-10-26 07:29:03

将 SurfaceView 和 WebView 添加到框架布局中,然后 mWebview.setBackgroundColor(0x00000000) 对我有用

Add the surfaceview and the webview to a framelayout, then mWebview.setBackgroundColor(0x00000000) works for me

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文