Hello All,

I am stuck at showing a webpage in a WebView. The default browser
works fine in the emulator but the webview shows the "Web page not
available error".

Here is the FeedView.java Activity source :
package com.bayer.feedreader;

import com.bayer.feedreader.R;

import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.TextView;

public class FeedView extends Activity {
        private Long mRowId;
        private TextView mFeedTitle;
        private String mFeedValue;
        private WebView mWebView;

        @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.feed_view);
        setTitle(R.string.feed_view);

        mFeedTitle = (TextView) findViewById(R.id.feed_title);
        mWebView = (WebView) findViewById(R.id.web_view);

        mRowId = null;
        Bundle extras = getIntent().getExtras();
        if (extras != null) {
            String title = extras.getString(NotesDbAdapter.KEY_TITLE);
            String body = extras.getString(NotesDbAdapter.KEY_BODY);
            mRowId = extras.getLong(NotesDbAdapter.KEY_ROWID);

            if (title != null) {
                mFeedTitle.setText(title);
            }
            if (body != null) {
                mFeedValue=body;
                mWebView.getSettings().setJavaScriptEnabled(true);
                mWebView.loadUrl("http://www.google.com";);

            }
        }
        mWebView.setWebViewClient(new HelloWebViewClient());
        }
        private class HelloWebViewClient extends WebViewClient {
            @Override
            public boolean shouldOverrideUrlLoading(WebView view, String url)
{
                view.loadUrl(url);
                return true;
            }
        }

}

The AndroidManifest.xml :

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


    <application android:icon="@drawable/icon" android:label="@string/
app_name">
        <activity android:name=".FeedList"
                  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=".FeedEdit"></activity>
        <activity android:name=".FeedView"></activity>

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

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to