2011年5月25日水曜日

ウェブブラウザーを起動する-ボタンで


プロジェクト名:WebBrowser
ビルドターゲット:Android 2.2
プロパティー
アプリケーション名:WebBrowser
パケージ名:com.webBrowser
Create Activity:WebBrowser
Min SDK Version:8

res/layout/main.xml に
ボタンを追加する。
ボタンのプロパティー設定で
ボタンに表示する文字を設定し、
On click でイベントを関連付ける。

res/values/strings.xml にボタンに表示する文字とブラウザで開くURLを設定する。

package com.webBrowser;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.view.View;

public class WebBrowser extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

 public void webOpen(View v) {
  Uri myUri = Uri.parse(this.getString(R.string.myURL));
  Intent webIntent = new Intent(Intent.ACTION_VIEW, myUri);
  startActivity(webIntent);
 }
}

ダウンロード

関連記事

0 件のコメント:

コメントを投稿