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);    }}


更多相关文章

  1. NPM 和webpack 的基础使用
  2. 【阿里云镜像】使用阿里巴巴DNS镜像源——DNS配置教程
  3. Android开发之文件下载
  4. Android(安卓)获取手机流量
  5. flutter 打包签名配置
  6. [Android]使用ProGuard遇到“conversion to Dalvik format faile
  7. android 设置listview item选中背景色
  8. 2-8 Android(安卓)简单介绍 (一)
  9. Android中Activity启动模式详解

随机推荐

  1. Android(安卓)Layout 之 RelativeLayout
  2. ADB基本命令
  3. 百度地图 Android(安卓)SDK - 新的版本号
  4. Android(安卓)SDK更新困难解决方法
  5. android adb常用命令集
  6. Android之AIDL使用解析
  7. Android(安卓)启动页白屏 快速解决
  8. Android(安卓)Studio 单元测试入门
  9. android 调试工具ADB介绍
  10. android绘图 报表----aChartEngine图表显