Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第71章、再識Intent-打開網頁(從零開始學Android)

第71章、再識Intent-打開網頁(從零開始學Android)

編輯:Android技術基礎

調用android內置安裝的浏覽器來打開網頁。

一、設計界面

1、MainActivity布局文件

打開res/layout/activity_main.xml文件。
輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout   
  3.     xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:layout_width="match_parent"  
  5.     android:layout_height="match_parent"  
  6.     android:orientation="vertical" >  
  7.   
  8.     <Button  
  9.         android:id="@+id/open"  
  10.         android:layout_width="wrap_content"  
  11.         android:layout_height="wrap_content"  
  12.         android:text="打開網頁" />  
  13.   
  14. </LinearLayout>  


二、程序文件

打開“src/com.genwoxue.contentprovider_b/MainActivity.java”文件。
然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.intenthttp;  
  2.   
  3.   
  4. import android.net.Uri;  
  5. import android.os.Bundle;  
  6. import android.app.Activity;  
  7. import android.content.Intent;  
  8. import android.view.View;  
  9. import android.view.View.OnClickListener;  
  10. import android.widget.Button;  
  11.   
  12. public class MainActivity extends Activity {  
  13.   
  14.     private Button btnOpen=null;  
  15.     @Override  
  16.      public void onCreate(Bundle savedInstanceState)     
  17.     {     
  18.         super.onCreate(savedInstanceState);                
  19.         setContentView(R.layout.activity_main);  
  20.         btnOpen=(Button)super.findViewById(R.id.open);  
  21.         btnOpen.setOnClickListener(new OnClickListener(){  
  22.             public void onClick(View v)  
  23.             {    
  24.                   
  25.                 Uri uri=Uri.parse("http://www.genwoxue.com");   //指定網址  
  26.                 Intent intent=new Intent();  
  27.                 intent.setAction(Intent.ACTION_VIEW);           //指定Action  
  28.                 intent.setData(uri);                            //設置Uri  
  29.                 MainActivity.this.startActivity(intent);        //啟動Activity  
  30.             }  
  31.         });  
  32.     }  
  33. }             
  34.       


三、運行結果

\    \

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved