-1

webview で簡単なアプリを作成しようとしています。onclicklistener を使用して、1 つの Web ビューに複数の URL をロードしたいと考えています。

4 つのボタンがあるメイン ビューがあります。ボタンをクリックすると、割り当てられた URL が同じ Web ビューで開きます。しかし、エミュレータで試していると、止まってしまいます。このコードの何が問題なのかわかりません。これが私のコードです。

package com.shiraz.shirazdesigner;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.WebView;
import android.widget.Button;

public class MainActivity extends Activity implements OnClickListener{

Button aas, fcbk, twtr, ytb;
WebView webview;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    initialize();
}

private void initialize() {
    // TODO Auto-generated method stub
    aas = (Button)findViewById(R.id.aasBtn);
    fcbk = (Button)findViewById(R.id.fbBtn);
    twtr = (Button)findViewById(R.id.twtrBtn);
    ytb = (Button)findViewById(R.id.ytBtn);
    webview = (WebView)findViewById(R.id.webView);
    aas.setOnClickListener(this);
    fcbk.setOnClickListener(this);
    twtr.setOnClickListener(this);
    ytb.setOnClickListener(this);
}

@Override
public void onClick(View v) {
    // TODO Auto-generated method stub
    switch (v.getId()){
        case R.id.aasBtn:
            webview.loadUrl("http://www.shirazdesigner.com");
            Intent aasint = new Intent (MainActivity.this, Webview.class);
            startActivity(aasint);
            break;
        case R.id.fbBtn:
            webview.loadUrl("http://www.facebook.com/shiraz.designer");
            Intent fbint = new Intent (MainActivity.this, Webview.class);
            startActivity(fbint);
            break;
        case R.id.twtrBtn:
            webview.loadUrl("http://www.twitter.com/shirazdesigner");
            Intent twtrInt = new Intent (MainActivity.this, Webview.class);
            startActivity(twtrInt);
            break;
        case R.id.ytBtn:
            webview.loadUrl("http://www.youtube.com/shirazdesigner");
            Intent ytInt = new Intent (MainActivity.this, Webview.class);
            startActivity(ytInt);               
            break;
    }
}
}

ここにマニフェストがあります

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shiraz.shirazdesigner"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />

<uses-permission android:name="android.permission.INTERNET" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.shiraz.shirazdesigner.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.shiraz.shirazdesigner.Webview"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
</application>

4

1 に答える 1

0

新しいアクティビティ (Webview) を開始しているようです。この場合、

webview = (WebView)findViewById(R.id.webView);

このウィジェットは startActivity() によって起動される Webview アクティビティのレイアウトにあるため、 null を返します。また、最初のアクティビティ ( MainActivity ) に Webview ウィジェットがない場合、次の行でエラーが発生します。

webview.loadUrl("http://www.shirazdesigner.com");

Main Activity から WebView Activity に URL を送信できます。

Intent fbint = new Intent (MainActivity.this, Webview.class);
fbint.putExtra("url", "http://www.fsdfsdgfsdgsdgsd.com")
startActivity(fbint);

WebView アクティビティでは、それを取得して WebView ウィジェットに割り当てます。

String theUrl = getIntent().getExtras().getString("url");
WebView webview = (WebView)findViewById(R.id.webView);
webview.loadUrl(theUrl );
于 2013-11-05T14:06:27.047 に答える