ホーム > タグ > 縮小

縮小

[Android] WebViewで簡易ブラウジング

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

    <WebView
        android:id="@+id/wv_Main"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
</LinearLayout>

 
プログラム側でWebViewクラスの loadUrl() を呼び出すことで対象ページを表示できます。

pubcli void loadGooglePage()
{
    WebView wvMain = (WebView)findViewById(R.id.wv_Main);
    wvMain.loadUrl("http://google.co.jp");
}

 
 

Continue reading

Home > Tags > 縮小

Search
Feeds
Meta
人気の記事

Return to page top