好的 - 所以现在我已经让这个Android“WebView”应用程序工作了,有没有办法绕过这个包装器?包装器在网页周围显示“____浏览”模块,仍允许您在其他地方浏览。除此之外,整个事情都很美妙。
XML等中是否有某些东西可以更改以删除此包装,并显示完整的网页而不是任何额外的?
http://www.tutorialspoint.com/android/images/android_webview2.jpg包装器的一个示例(页面周围的空间,文本输入和“浏览”按钮)
答案 0 :(得分:0)
在任何网络视图中都非常标准
不,不是。
XML等中是否有某些东西可以更改以删除此包装,并显示完整的网页而不是任何额外的?
是。您可以删除EditText
窗口小部件,Button
窗口小部件以及其他内容。
我们暂时假设有问题的布局XML是the one that you put in your previous question:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
<EditText
android:id="@+id/urlField"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/textView1"
android:layout_centerHorizontal="true"
android:ems="10" />
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/urlField"
android:layout_centerHorizontal="true"
android:onClick="open"
android:text="@string/browse" />
<WebView
android:id="@+id/webView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/textView1"
android:layout_alignParentBottom="true"
android:layout_below="@+id/button1" />
</RelativeLayout>
如果您不想Button
,请删除Button
。
如果您不想EditText
,请删除EditText
。
如果您不想TextView
,请删除TextView
。
如果在完成上述所有操作后,您只有RelativeLayout
和WebView
,那么您甚至可以摆脱RelatitveLayout
。