hi, folks.

Does some please let me know how to use webview?
I want to make a webview keep to work wthin in a layout without
opening new web browser when clicking a link tag.

For instance, you can see the "Hello" text and google web page on a
display. Then if you click the "help" or "news" or "settings" links,
the android boots new web window and shows the web page.

I want to keep/fix the webview to open web page. I dont want to start
android embedded web browser.
Does anyone know the way to do this??

<!-- sample code -->
WebSettings webSettings = webview.getSettings();
webSettings.setJavaScriptEnabled(true);
webview.loadUrl("http://www.google.co.jp/";);

<!-- sample layout -->
<?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:id="@+id/text_view"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:paddingBottom="4dip"
        android:text="Hello" />

    <WebView
        android:id="@+id/web_view"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1.0"/>
 </LinearLayout>


Thanks in advance
-- 
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