gpt4 book ai didi

Android SDK ImageView float 在 webview 之上

转载 作者:行者123 更新时间:2023-11-29 21:48:16 25 4
gpt4 key购买 nike

你添加到 xml 文件中的所有内容以允许 imageview float 在 webview 或相机 View 等之上

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#e2e1e3" >

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:src="@drawable/pm"
/>

<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent" />

</LinearLayout>

最佳答案

您需要使用不同的布局,例如 FrameLayoutRelativeLayout

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#e2e1e3" >

<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerInParent="true" />

<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:src="@drawable/pm"
android:layout_centerInParent="true" />

</RelativeLayout>

关于Android SDK ImageView float 在 webview 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15145201/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com