是否可以将webview作为一个小窗口,而不是全屏?
答案 0 :(得分:1)
WebView
就像其他任何一个小部件一样。您可以通过放入的布局来控制其大小。
答案 1 :(得分:0)
当然......例如,这会在WebView
旁边显示ListView
:
<?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"
>
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>
<WebView
android:id="@+id/browser"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
/>
</LinearLayout>
取自Mark Murphy example。顺便说一句,Mark Murphy是几秒钟前回答这个问题的 common guy。