2

ViewFlipper プロジェクトに取り組んでいます。この main.xml ファイルで Web ビューを作成しましたが、mainActivity で (findViewById によって) アクセスできません。ボタンは接続できますが、webview に接続できないようです。

<?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>

これは外観の写真です。ご覧のとおり、ボタンとフリッパーだけで webview にアクセスできません。

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

ありがとう!

4

2 に答える 2

0

正しい方法で使用しているようですが
、オートコンプリートの提案ボックスに表示されない理由はわかっていると思います。Eclipse
メニューツールから「クリーン」+「ビルド」操作を実行します。

を確認してください

プロジェクト -> 自動的にビルド

次にヒットします:

プロジェクト->クリーン

プロジェクトが再構築された後、webView1 の ID がオートコンプリート ボックスに表示されると確信しています。

于 2012-07-27T15:40:02.477 に答える
0

こちらのドキュメントを参照してください。

次のように webview を初期化します。

WebView webview = new WebView(this);

setContentView(webview);

于 2012-07-27T13:37:46.720 に答える