2

我正在开发一个 ViewFlipper 项目。在这个 main.xml 文件中,我创建了一个 webview,但在我的 mainActivity 中无法访问它(通过 findViewById)。我可以连接按钮,但似乎我无法连接网络视图。

<?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"
android:orientation="vertical" >

<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/hello" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/previous"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="previous" />

    <Button
        android:id="@+id/next"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="next" />
</LinearLayout>

<ViewFlipper
    android:id="@+id/flipper"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >

        <ImageView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#C0C0C0"
        android:gravity="center"
        android:orientation="vertical" >

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


    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="#A0A0A0"
        android:gravity="center"
        android:orientation="horizontal" >



        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/ic_launcher" />
    </LinearLayout>
</ViewFlipper>

</LinearLayout>

这是它的外观图片,如您所见,我只能通过按钮 + 脚蹼访问 web 视图!

http://postimage.org/image/h3g6yr7r9/

谢谢!

4

2 回答 2

0

请参阅此处的文档

像这样初始化webview:

WebView webview = new WebView(this);

setContentView(webview);

于 2012-07-27T13:37:46.720 回答
0

看来您以正确的方式使用它,
但我想我知道为什么它没有显示在自动完成建议框中:
从 Eclipse 菜单工具执行“干净”+“构建”操作:

检查

项目 -> 自动构建

然后点击:

项目->清洁

我确定项目重建后,webView1 的 id 会显示在自动完成框中。

于 2012-07-27T15:40:02.477 回答