0

我有一个布局,我需要在屏幕的一部分上显示一个 web 视图。我已经在 Eclipse 的图形布局中设置了布局,它看起来确实像我想要的那样(徽标和标题变黑了):

图形布局中所示的布局

但是,当我在模拟器或手机上打开此布局时,它会将 WebView 显示为全屏。如何制作这样的布局?任何帮助深表感谢!

这是我的 XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/Theme.KB_default"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/header_background_shape" >
        <TextView
            android:id="@+id/heading"
            style="@style/Theme.KB_header"
            android:layout_width="wrap_content"
            android:layout_centerHorizontal="true"
            android:text="@string/app_name" >
        </TextView>
        <ImageView
            android:id="@+id/imageViewPadlock"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"
            android:contentDescription="@string/global_secure_connection"
            android:src="@drawable/padlock" />
    </RelativeLayout>
    <View
        android:layout_width="fill_parent"
        android:layout_height="1dip"
        android:background="@color/black" >
    </View>
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="0.41"
        android:orientation="vertical" >
        <WebView
        android:id="@+id/webview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
    </LinearLayout>
    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="40dp"
            android:layout_height="20dp"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="15dp"
            android:contentDescription="@string/global_logo"
            android:scaleType="fitXY"
            android:src="@drawable/logo_transparrent_notext" />
    </LinearLayout>
</LinearLayout>
4

2 回答 2

0

将表格块之一作为 webview

检查这个链接

http://developer.android.com/reference/android/widget/TableLayout.html

您还可以使用对话框检查此示例

http://www.41post.com/4673/programming/android-creating-a-webview-dialog

于 2012-08-23T10:41:26.310 回答
0

好吧,我似乎是活着的愚蠢的家伙。我的布局有效,但我忘记添加“setContentView(xml.file);” 所以它从来没有加载过 XML ......愚蠢

于 2012-08-23T12:38:16.153 回答