Android之Intent和Activity

Intent可以说是Android的灵魂,程序跳转和传递数据的时候基本上就是靠Intent了。Intent在Android应用中是相当重要的,理解Intent对应用编程很有帮助。在Android的官方API文档里边对Intent是这样定义的:An Intent is an abstract description of an operation to be performed。一个Intent就是一次对将要执行的操作的抽象描述(真实够抽象的)。具体有一下3种形式:
1、通过startActivity方法来启动一个新的Activity。
2、通过Broadcast机制可以将一个Intent发送给任何对这个Intent感兴趣的BroadcastReceiver。
3、通过startService(Intent)或bindService(Intent, ServiceConnection, int)来和后台的Service交互。

下面来看一下如何通过startActivity方法启动一个新的Activity。
Intent最常用的用途就是连接一个应用当中的各个Activity,如果我们把Activity比作积木的话,那么Intent就好像是胶水,把不同的积木粘起来,构成我们搭建的房子。在程序当中如果要启动一个Activity的话,通常我们会调用startActivity方法,并把Intent作为参数传进去,如下所示:
startActivity(intent);
这个Intent或者指定了一个Activity,或者里边只包含了选定Activity的信息,但是具体启动哪个Activity是由系统去决定的,Android系统负责挑选一个最满足匹配挑选条件的Activity。

实例:IntentDemo
运行效果:


代码清单:
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.rainsong.intentdemo"
      android:versionCode="1"
      android:versionName="1.0">

    <uses-sdk
        android:minSdkVersion="11"
        android:targetSdkVersion="19" />

    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
        <activity android:name="MainActivity"
                  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="OtherActivity"
                  android:label="OtherActivity">
        </activity>
    </application>
</manifest>
布局文件: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="match_parent"
    android:layout_height="match_parent"
    >
    <Button
        android:id="@+id/button1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="跳转到另一个Activity"
    />
</LinearLayout>
布局文件:other.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="OtherActivity"
    />
</LinearLayout>
Java源代码文件:MainActivity.java
package com.rainsong.intentdemo;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;

public class MainActivity extends Activity
{
    OnClickListener listener1 = null;
    Button button1;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        
        listener1 = new OnClickListener() {
            public void onClick(View v) {
                Intent  intent1= new Intent(MainActivity.this, OtherActivity.class);
                startActivity(intent1);
            }
        };

        button1 = (Button)findViewById(R.id.button1);
        button1.setOnClickListener(listener1);
    }
}

Java源代码文件:OtherActivity.java

package com.rainsong.intentdemo;

import android.app.Activity;
import android.os.Bundle;

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


郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。