Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android Intent對象的簡單使用

Android Intent對象的簡單使用

編輯:高級開發

如果要轉換的頁面不只是背景,顏色或文字內容的不同,而是Activity 的置換,那,那就不是單單改變Layout 就能完成的,尤其是需要傳遞的變量不像網頁可以通過CookIE 或Session ,在程序裡要移交主動權到另外一個Activity ,光靠先前技巧是辦不到的.

  而下面我們要講的Intent 對象就是為解決這問題而生的,Intent 就如同其英文字義,是"想要"或"意圖",之意,在主Activity 當中,告訴程序自己是什麼,並想要前往哪裡,這就是Intent 對象所處理的事了,本例子和前一個例子我們將實現同一個效果.

  首先是布局main.xml 及mylayout.XML

  main.XML:

  < ?XML version="1.0" encoding="utf-8"?>

  < LinearLayout XMLns:android="http://schemas.android.com/apk/res/android"

  android:orIEntation="vertical"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent"

  >

  < TextVIEw

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:text="歡迎來到魏祝林的博客"

  />

  < Button

  android:id="@+id/bt1"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  android:text="點擊進入Layout2"

  />

  < /LinearLayout>

  mylayout.XML

  < ?XML version="1.0" encoding="utf-8"?>

  < LinearLayout XMLns:android="http://schemas.android.com/apk/res/android"

  android:orIEntation="vertical"

  android:layout_width="fill_parent"

  android:layout_height="fill_parent"

  android:background="#ffffffff"

  >

  < TextVIEw

  android:layout_width="fill_parent"

  android:layout_height="wrap_content"

  android:text="Welcome to Mr Wei's blog"

  />

  < Button

  android:id="@+id/bt2"

  android:layout_width="wrap_content"

  android:layout_height="wrap_content"

  接上頁

  android:text="點擊進入Layout1"

  />

  < /LinearLayout>

  然後是控制程序IntentDemo.java 及IntentDemo1.Java 代碼:

  IntentDemo.Java:

  package com.android.test;

  import android.app.Activity;

  import android.content.Intent;

  import android.os.Bundle;

  import android.view.VIEw;

  import android.widget.Button;

  public class IntentDemo extends Activity {

  private Button bt1;

  public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  setContentVIEw(R.layout.main);

  bt1 = (Button)findVIEwById(R.id.bt1);

  bt1.setOnClickListener(new Button.OnClickListener(){

  public void onClick(VIEw v){

  //new 一個Intent對象,並指定要啟動的Class

  Intent intent = new Intent();

  intent.setClass(IntentDemo.this, IntentDemo1.class);

  //調用一個新的Activity

  startActivity(intent);

  //關閉原本的Activity

  IntentDemo.this.finish();

  }

  });

  }

  }

  在IntentDemo.java 同一目錄內新建一個IntentDemo1.Java 類

  IntentDemo1.Java:

  package com.android.test;

  import android.app.Activity;

  import android.content.Intent;

  import android.os.Bundle;

  import android.view.VIEw;

  import android.widget.Button;

  public class IntentDemo1 extends Activity {

  private Button bt2;

  public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);

  // 載入mylayout.XML

  setContentVIEw(R.layout.mylayout);

  bt2 = (Button) findVIEwById(R.id.bt2);

  bt2.setOnClickListener(new Button.OnClickListener() {

  public void onClick(VIEw v) {

  // new 一個Intent對象,並指定要啟動的Class

  接上頁

  Intent intent = new Intent();

  intent.setClass(IntentDemo1.this, IntentDemo.class);

  // 調用一個新的Activity

  startActivity(intent);

  // 關閉原本的Activity

  IntentDemo1.this.finish();

  }

  });

  }

  }

  最後是本例子的重點,添加另外一個Activity 所以必須在androidManifest.XML 中定義一個新的activty ,並給予名稱name ,或則程序無法編譯運行.新手很容易遇到這個問題.

  < ?XML version="1.0" encoding="utf-8"?>

  < manifest XMLns:android="http://schemas.android.com/apk/res/android"

  package="com.android.test"

  android:versionCode="1"

  android:versionName="1.0">

  < application android:icon="@drawable/icon" android:label="@string/app_name">

  < activity android:name=".IntentDemo"

  android:label="@string/app_name">

  < intent-filter>

  < action android:name="android.intent.action.MAIN" />

  < category android:name="android.intent.category.LAUNCHER" />

  < /intent-filter>

  < /activity>

  < activity android:name="IntentDemo1">< /activity>

  < /application>

  < uses-sdk android:minSdkVersion="3" />

  < /manifest>

  本例子所涉及的的全部代碼已經全部貼出,最後執行之,將達到上述效果!本節到此結束~

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