ホーム > タグ > WebView
WebView
[Android] WebViewで簡易ブラウジング
- 2012-05-10 (木)
- Android
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"); }
- Comments: 0
- Trackbacks: 0
Home > Tags > WebView
- Search
- Feeds
- Meta
- 人気の記事