我正在尝试使用带按钮的嵌入式网站。当我添加按钮时,Web视图消失。我试图将按钮放在一个单独的容器中,但没有任何效果。请帮助。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<WebView
android:id="@+id/webcast"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.0"
/>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/video"
android:layout_gravity="top"
/>
</LinearLayout>
答案 0 :(得分:0)
只需使用FrameLayout代替LinearLayout。通过这个,你将有webview按钮。